一、把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表中
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表中