Hive + HBase,用HQL查询HBase

本小妞迷上赌 提交于 2020-04-01 13:55:13

Hive整合HBase:数据实时写Hbase,实现在Hive中用sql查询

以下操作的 Hive版本:2.3.6 ,HBase版本:2.0.4
  • 在HBase中创建表:t_hbase_stu_info

    create 't_hbase_stu_info','st1'
  • 在Hive中创建外部表:t_hive_stu_info

    create external table t_hive_stu_info
    (id int,name string,age int,sex string)
    stored by 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
    with serdeproperties("hbase.columns.mapping"=":key,st1:name,st1:age,st1:sex")
    tblproperties("hbase.table.name"="t_hbase_stu_info");
  • 在Hbase中给t_hbase_stu_info插入数据
    put 't_hbase_stu_info','1001','st1:name','zs'
    put 't_hbase_stu_info','1001','st1:age','23'
    put 't_hbase_stu_info','1001','st1:sex','man'
    put 't_hbase_stu_info','1002','st1:name','ls'
    put 't_hbase_stu_info','1002','st1:age','56'
    put 't_hbase_stu_info','1002','st1:sex','woman'
  • 查看Hbase中的数据
    scan 't_hbase_stu_info'

    Hive + HBase,用HQL查询HBase

  1. 查看Hive中的数据
    select * from t_hive_stu_info;

    Hive + HBase,用HQL查询HBase

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!