hive创建hbase外部表

hive 启动命令:$HIVE_HOME/bin/hive

hive 创建hbase外部表:
ihr_pes为hive表名:

CREATE EXTERNAL TABLE ihr_pes(
id string comment “hbase rowkey”,
identity_no string comment “身份证号”,
org_code string comment “医院编号”,
patient_id string comment “病人id”,
patient_name string comment “病人姓名”,
physical_exam_no string comment “体检号”,
doc_title string comment “体检标题”,
doc_path string comment “存储路径”
)
STORED BY ‘org.apache.hadoop.hive.hbase.HBaseStorageHandler’
WITH SERDEPROPERTIES (“hbase.columns.mapping” = “:key,p:IDENTITY_NO,p:ORG_CODE,p:PATIENT_ID,p:PATIENT_NAME,p:PHYSICAL_EXAM_NO,p:DOC_TITLE,p:DOC_PATH”)
TBLPROPERTIES(“hbase.table.name” = “ihr:pes”);

hbase 表名:ihr:pes
备注:“hbase.columns.mapping” 下的hbase中的字段要在一行,中间以,分割不能空格或换行

先执行进入hive命令 然后执行创建外部表命令。然后直接退出hive命令

hive 退出命令:quit;

你可能感兴趣的:(hive创建hbase外部表)