HBase Scan 结果是否有订单保证
Are there order guarantee with HBase Scan result
请问,在迭代ResultScanner(Scan result)时,行键是否有顺序保证,较小的行键在较大的行键之前?
是的。根据 https://hbase.apache.org/book.html#dm.sort:
All data model operations HBase return data in sorted order. First by row, then by ColumnFamily, followed by column qualifier, and finally timestamp (sorted in reverse, so newest records are returned first).
请问,在迭代ResultScanner(Scan result)时,行键是否有顺序保证,较小的行键在较大的行键之前?
是的。根据 https://hbase.apache.org/book.html#dm.sort:
All data model operations HBase return data in sorted order. First by row, then by ColumnFamily, followed by column qualifier, and finally timestamp (sorted in reverse, so newest records are returned first).