Is there a way to do pagination in HBase based on rowkeys?
I wanted to have the same effect as I do in SQL with SELECT * FROM table LIMIT 10 OFFSET 10.<
SQL with SELECT * FROM table LIMIT 10 OFFSET 10
What about using the ColumnPaginationFilter?
scan 't1', {FILTER => org.apache.hadoop.hbase.filter.ColumnPaginationFilter.new(, )}