日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

hdfs orc格式_hive中orc格式表的数据导入

發布時間:2024/1/1 编程问答 43 豆豆
生活随笔 收集整理的這篇文章主要介紹了 hdfs orc格式_hive中orc格式表的数据导入 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Hive系列文章

hive創建orc格式表不能像textfile格式一樣直接load數據到表中,需要創建臨時textfile表,然后通過insert into 或者insert overwrite到orc存儲格式表中。

如果你直接load數據到orc格式表中,這個步驟可以成功,但是會發現select * from table limit 1;這個語句都會報錯,也就是說直接load數據是不可行的。對于hive中orc格式表可以參見:大數據:Hive - ORC 文件存儲格式

1)、創建表

需要創建臨時表和數據表。

臨時表

create table if not exists db.tmp

(

name string,

age int

)

partitioned by (dt string, hour string, msgtype string, action string)

row format delimited fields terminated by '\t';

數據表

create external table if not exists db.people

(

name string,

age int

)

partitioned by (dt string, hour string, msgtype string, action string)

row format delimited fields terminated by '\t'

stored as orc;

2)、 導入數據

需要先用load命令將數據導入textfile格式表,然后再通過insert into插入orc格式表。

(1) 導入數據到textfile

load data inpath 'hdfs://path' into table db.tmp partition(dt="2018-06-22",hour="00",msgtype="web", action="click");

(2)查詢數據插入orc格式表

insert into db.people partition(dt="2018-06-22",hour="00",msgtype="web", action="click")

select name,age

from db.tmp where dt = "2018-06-22" and hour = "00"

and msgtype = "web" and action = "click";

關注公眾號:Java大數據與數據倉庫,學習大數據技術。

喜歡 (0)or分享 (0)

總結

以上是生活随笔為你收集整理的hdfs orc格式_hive中orc格式表的数据导入的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。