I am using HBase-Hive integration to read and write HBase with Hive, following documentation.
Basically, I create a table in Hive with HBaseStorageHandler
like:
CREATE EXTERNAL TABLE hbase.test (
col1 string,
col2 map<string, double>
)
STORED BY
'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
WITH SERDEPROPERTIES (
'hbase.columns.mapping'=':key, cf:',
'hbase.table.name'='test')
It's working perfectly reading and writing. But now I want to clear some bad data by value. This value is in both row key and column cell, i.e. col1, and key of col2.
I did not find anything related to data deletion in the document. Hopefully, someone has similar experience can answer my question here.
Thanks in advance!