How do you use the hbase shell scan command when your row key is hashed?
I have a dummy instance working on a sandbox (where the row key is not hashed) with the following command.
scan 'tableName' , {ROWPREFIXFILTER => 'myrowStartValue'}
and this works. However, for the real instance the row key is hashed. How to solve this?
I would expect to have one record only but it may be a range.
I did find that we can use the hbase classes at the command line. However, I didn't get the value I expected.