I am trying find a solution to scan a Hbase table, with multiple partial keys from the same rowkey.
example:
RowKey: account_id|name|age|transaction_date
12345|abc |50 |2016-05-05 08:10:10
Here I want to scan a hbase table to get all the possible values with the following partial key combination:
Rowkey: account_id|transation_date
12345|2016-05-05 08:10:10