HBase数据导入Hive

HBase数据的准备

表:event_db:users

表结构
在这里插入图片描述
表数据
在这里插入图片描述

Hive建表和导入

创建库:create database events
设置临时变量代表 events:set hivevar:db=events;
设置动态分区非严格模式:set hive.exec.dynamic.partition.mode=nonstrict;
设置允许动态分区:set hive.exec.dynamic.partition=true;
关闭自动mapjoin:set hive.auto.convert.join=false;

创建外部表:

【注意字段顺序一一对应】

create external table ${db}.hb_users(
user_id string,
birth_year int,
gender string,
locale string,
location string,
time_zone string,
joined_at string)
stored by 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
with serdeproperties('hbase.columns.mapping'=':key,
profile:birthyear,
profile:gender,
region:locale,
region:location,
region:timezone,
registration:joinedAt')
tblproperties ('hbase.table.name'='event_db:users');

创建内部表users,将hb_users外部数据以ORC格式存储到HDFS中

create table ${db}.users
stored as orc as
select * from ${db}.hb_users;

删除外部表

drop table ${db}.hb_users;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值