首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
数据库
> 详细
hbase结合hive和sqoop实现数据指导mysql
时间:
2015-08-19 12:47:47
阅读:
170
评论:
0
收藏:
0
[点我收藏+]
标签:
hive综合hbase两个优势表中的:
1.实现数据导入到MYSQL。
2.实现hbase表转换为另外一张hbase表。
三个操作环节:
1.hbase关联hive作为外部表:
Sql代码
CREATE
EXTERNAL
TABLE
hive_device_app(row_key string,genera_type string,install_type string,label string,meid string,model string,pkg_name string,specific_type string)
STORED
BY
‘org.apache.hadoop.hive.hbase.HBaseStorageHandler‘
WITH
SERDEPROPERTIES (
"hbase.columns.mapping"
=
":key,cf:genera_type,cf:install_type,cf:label,cf:meid,cf:model,cf:pkg_name,cf:specific_type"
)
TBLPROPERTIES(
"hbase.table.name"
=
"tb_yl_device_app_info1"
);
2.hbase真正关联hive,hive的插入更新等操作直接影响hbase中的数据
Sql代码
CREATE
TABLE
hbase_device_app(row_key string,genera_type string,install_type string,label string,meid string,model string,pkg_name string,specific_type string)
STORED
BY
‘org.apache.hadoop.hive.hbase.HBaseStorageHandler‘
WITH
SERDEPROPERTIES (
"hbase.columns.mapping"
=
":key,cf:genera_type,cf:install_type,cf:label,cf:meid,cf:model,cf:pkg_name,cf:specific_type"
)
TBLPROPERTIES(
"hbase.table.name"
=
"tb_yl_device_app_info2"
);
3.创建一张hive表
Sql代码
CREATE
TABLE
hive_device_app_real(row_key string,genera_type string,install_type string,label string,meid string,model string,pkg_name string,specific_type string)
4.外部表数据导入hive实表
Sql代码
insert
overwrite
table
hive_device_app_real
select
*
from
hive_device_app
5.sqoop导出hive的数据到mysql
Sql代码
sqoop export
--connect jdbc:mysql://Hadoop48/toplists -m 1 --table hive_device_app_real --export-dir /user/hive/warehouse/hive_device_app_real/000000_0 --input-null-string "\\\\N" --input-null-non-string "\\\\N" --input-fields-terminated-by "\\01" --input-lines-terminated-by "\\n"
6.habse(关联hive)中一张表转到另外一张表当然能够利用hive的内置函数实现数据处理
Sql代码
insert
overwrite
table
another_hive_hbase_related_table
select
*
from
hbase_device_app
导出hbase中数据到mysql须要经过步骤:1345
hbase在一个表到另一个表(中间可以使用hive用于数据处理的内置函数):226
hbase结合hive和sqoop实现数据指导mysql
标签:
原文地址:http://www.cnblogs.com/gcczhongduan/p/4741607.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
数据库进阶
2021-07-29
在 Oracle 数据库中执行 SQL 语句遇到特殊字符的转义方式
2021-07-28
Windows Logstash同步 Sqlserver 到Elasticsearch
2021-07-26
mysql数据库(11):恢复数据
2021-07-26
mysql数据库(9):常用查询的例子
2021-07-26
SQLAlchemy 多对多
2021-07-26
ClickHouse的JDBC连接
2021-07-26
Apache HBase 1.7.1 发布,分布式数据库
2021-07-26
数据库常用架构和同步工作原理
2021-07-26
MySQL数据库设计规范(仅供参考)
2021-07-26
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!