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?
Are you expecting a range of keys to be returned? Once they're hashed, they'll no longer be ordered in the way you expect, and so a scan might not do what you expect. I'm afraid you'll have to manually hash any keys you want to retrieve in advance - HBase shell can't do this for you.