我需要使用hive在HBase上执行查询。我已经下载了HBase和hive,我的HMaster运行正常;我需要知道我需要做什么配置更改,以便hive使用HBase作为后端数据库。任何链接教程将不胜感激。 提前谢谢。
答案 0 :(得分:7)
apache Hive wiki很好地解释了https://cwiki.apache.org/confluence/display/Hive/HBaseIntegration
要创建从hive管理的HBase表,请尝试
CREATE TABLE hive_managed(key string, value1 string, value2 int)
STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
WITH SERDEPROPERTIES ("hbase.columns.mapping" = ":key,columnFamilyName:val1,columnFamilyName:val2")
TBLPROPERTIES ("hbase.table.name" = "hivemanaged");
*编辑以下评论