我可以用这个查询创建一个 Hive 表
CREATE TABLE hbtable(key int, value string)
STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
WITH SERDEPROPERTIES ("hbase.columns.mapping" = ":key,cf1:val")
TBLPROPERTIES ("hbase.table.name" = "xyz");
我使用此查询将数据插入表中,但它不起作用,
insert overwrite table hbtable select * from hbtable s where s:hive fiels="value"
如何通过 Hive 表将值插入 HBase 表?