My Hbase table has a column which contains array of key-value pairs.
I read about row-key
, column family
or column
, custom filter
though,
I need scan columns which holding specific key name like...
ROW1 , CF1, DATA_COLUMN : {KEY1:VALUE, KEY2:VALUE, KEY3:VALUE }
ROW2 , CF1, DATA_COLUMN : {KEY1:VALUE}
ROW3 , CF1, DATA_COLUMN : {KEY1:VALUE, KEY5:VALUE}
ROW4 , CF1, DATA_COLUMN : {KEY8:VALUE} <--- Only needed row with KEY8 value set
I'm bushing around RDBMS wrapper but something more efficient way would exists, I think. Any advice would be appreciated.