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");

注意:第一列应该是关键列。