I was wondering if HBase supports wildcards on RowKey scans. Something similar to:
select * from TABLE where KEY like '%SEARCH_KEY%';
I understand we can use a partial key scan if we have some knowledge of the prefix to the rowkey (and HBase is very efficient with that scan). However, if we don't have the information prefixed (meaning the search key could be anywhere in the RowKey), then Hbase has to run a full table scan, correct?
Also, how can I form such a query in HBase (Either code or through the shell)?