码迷,mamicode.com
首页 > 其他好文 > 详细

在HUE中将文本格式的数据导入hive数仓中

时间:2019-02-21 21:28:54      阅读:486      评论:0      收藏:0      [点我收藏+]

标签:行操作   mat   data   big   文本格式   als   store   path   nbsp   

今天有一个需求需要将一份文档形式的hft与fdd的城市关系关系的数据导入到hive数仓中,之前没有在hue中进行这项操作(上家都是通过xshell登录堡垒机直接连服务器进行操作的),特此记录一下。

-- step1
-- 创建表(注意表的存储格式)
create table if not exists edw_public.dim_edw_pub_hft_fdd_city_rel_info(
hft_city_id     bigint  comment ‘好房通城市id‘,
hft_city_name   String  comment ‘好房通城市名称‘,
fdd_city_id     bigint  comment ‘房多多城市id‘,
fdd_city_name   String  comment ‘房多多城市名称‘
) comment ‘好房通房多多city_id关联关系表‘
row format delimited fields terminated by ‘\t‘
stored as textfile;

-- step2
-- 将文本格式的文件放入HDFS对应目录下

-- step3
-- 将数据导入表中
load data inpath ‘/edw/edw_public/DWD/DDL/edw_public.dim_edw_pub_hft_fdd_city_rel_info/hft_fdd_city_rel_info.txt‘ into table edw_public.dim_edw_pub_hft_fdd_city_rel_info

 

在HUE中将文本格式的数据导入hive数仓中

标签:行操作   mat   data   big   文本格式   als   store   path   nbsp   

原文地址:https://www.cnblogs.com/shujuxiong/p/10415401.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!