首页 > 其他 > 详细

TXT格式文件插入Hive

时间:2020-11-30 09:03:03      阅读:50      评论:0      收藏:0      [点我收藏+]

1 Hive操作

1.1 创建数据库

create database if not exists myhive;
use myhive;

1.2 创建表

row format delimited fields terminated by ‘,‘:指定字段之间的分隔符
stored as textfile:指定文件存储格式
create table if not exists test(XXX int,XXX string) row format delimited fields terminated by , stored as textfile;

1.3 导入txt文件到表

load data local inpath /test.txt into table test;

1.4 查询结果并保存

1.4.1 导出到本地

insert overwrite local directory "/test/out/" row format delimited fields terminated by "\t" select * from test;

1.4.2 导出到hdfs

insert overwrite directory "/test/out/" row format delimited fields terminated by "\t" select * from test;

 

TXT格式文件插入Hive

原文:https://www.cnblogs.com/MoooJL/p/14059089.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!