mysql数据导入hive和hbase

一、把mysql数据库的表导出为txt文本文件
    select * from tablename into outfile "/filename.txt";
二、在hive中创建对应的表
    create table hive_table (column1 string,column2 string);
三、把filename.txt文件导入hive表
    load data local inpath "/filename.txt" into table hive_table;
    这样mysql数据库表的数据就导入到hive表中
四、在hive中创建hbase识别的表
    create table hbase_hive_table(column1 string,column2 string)
    stored by 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
    with serdeproperties ("hbase.columns.mapping" = ":key,info:column1")
    tblproperties("hbase.table.name" = "hbase_hive_table");
    或者先在hbase中创建hbase_hive_table表
    create 'hbase_hive_table','info'
    再在hive中创建外部表
    create external table hbase_hive_table(column1 string,column2 string)
    row format serde 'org.apache.hadoop.hive.hbase.HBaseSerDe'
    stored by 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'
    with serdeproperties ("hbase.columns.mapping" = ":key,info:column1")
    tblproperties("hbase.table.name" = "hbase_hive_table");
五、在hive中把文本文件导入数据的表的数据在导入到hbase识别的表中
    insert into table hbase_hive_table select * from hive_table;
    这样mysql数据库表的数据通过hive就导入hbase表中
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值