HIVE HBASE 整合
從以下版本開始支援 Hive-Hbase 整合。Hive:0.11.0 HBase:0.94.2 Hadoop:0.20.2
CREATE TABLE hbase_hive
(id string,
col1 string,
col2 string,
col3 int)
STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
WITH SERDEPROPERTIES
("hbase.columns.mapping" = ":key,cf1:col1,cf1:col2,cf1:col3")
TBLPROPERTIES ("hbase.table.name" = "hive_hbase");
注意:第一列應該是關鍵列。