My row key in hbase is numbers with different length, like 1,2,3.....32423480, 32423481..
When I use
scan 'table' {STARTROW => '1', ENDROW => '3'}
to scan the table, I only want result with the row key 1,2,3, but it returns all the rows that start with 1,2,3, like 1003423,200034..
Is it possible to filter the row key range in numeric way use hbase shell or java api?
Thanks