Details
Description
Hbase natively stores columns sorted based on the column qualifier. A scan is guaranteed to return sorted columns. The Java API works fine but the Thrift API is broken. Hbase uses TreeMap that ensures that sort order is maintained. However Hbase thrift specification uses a simple Map to store the data. A map, since it is unordered doesn't result in columns being returned in a sort order that is consistent with their storage in Hbase.
Attachments
Attachments
Issue Links
- relates to
-
HBASE-8823 Ensure HBASE-7826 is covered by Thrift 2
- Closed