Am working on a project which uses HBase. Even though I formed the rowkey as good as possible, still in some scenarios I need to get the results in either ascending or descending order.
Is there anything in HBase which is equivalent to “order by” operation in MySQL?
Or is Order By on a specific column qualifier possible in HBase?
Am working on a project which uses HBase. Even though I formed the rowkey
Share
No; you need to read the data in the order it’s sorted in the row key, then do your own sort (e.g. in java or whatever language you’re using).