I have a row key of the form:
<name>--<zero-padded timestamp>
Using HBASE shell I want to find last 15 entries with the prefix .
scan 'mytable', {LIMIT => 15, ROWPREFIXFILTER => 'name' }
Gives me the first 15, but:
scan 'mytable', {LIMIT => 15, REVERSED => TRUE, ROWPREFIXFILTER => 'name'}
returns zero results...
What is the syntax for such a request?
Is it possible, or do I have to do something cheesy like use MAXINT-timestamp as my rowkey to manually reverse the key ordering?