一、如何把csv文件导入Hive
(1) 在Hive中建立与csv相对应的表
create table if not exists tmp.tmp_wenxin_20231123 ( redeem_code_id string comment '' ) ROW FORMAT DELIMITED FIELDS TERMINATED BY ',' STORED AS TEXTFILE;
创建了一张名为tmp_wenxin_20231123的hive表,表中只有一个列redeem_code_id;这个表以逗号作为分隔符,并以文本文件的形式存储。
(2) 将csv文件上传到Hdfs
hdfs dfs -put /home/sysadmin/tmp/20231123.csv /tmp
(3) 将hdfs文件上load到Hive
load data inpath '/tmp/20231123.csv' into table tmp.tmp_wenxin_20231123;
猜你喜欢
网友评论
- 搜索
- 最新文章
- 热门文章