I have a pretty big table with 300 millions records(table storage is about 13GB).
I have partitioned this table into 10 partitions, but every partition still have almost 30 millions records, that makes the select xxx where column1 = "yyy"
very slow (almost 30s every simple select).
Now I want to speed it up by adding a hash index to column1
I use for query data, but it turns out very very very slow to add the index.
So I wonder ,is it possible to do that ? And how do I speed up this operation?