0
我可以創建一個蜂巢表像這樣從HBase的需要數據部分數據:創建外部蜂巢表使用從HBase的表
CREATE EXTERNAL TABLE app_store_data
(key string,
type string,
name string,
country string,
price float)
STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
WITH SERDEPROPERTIES
("hbase.columns.mapping" = ":key,cf:_type,cf:name, cf:country, cf:price")
TBLPROPERTIES ("hbase.table.name" = "DEBUG_items_app_store");
然而,我的HBase的表中包含兩種類型的項目,一個是「應用」和其他是'評論',一個名爲_type的鍵定義了它是哪種類型的項目。我想在同一個hbase表格的hive中創建兩個獨立的外部表格,其中一行將帶有_type ='review'的行,另一行將帶有_type ='app'的行。我如何去做這件事?