91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

hive存儲格式有幾種

發布時間:2021-12-10 14:24:07 來源:億速云 閱讀:350 作者:小新 欄目:大數據

這篇文章主要介紹了hive存儲格式有幾種,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

hive的存儲格式通常是三種:textfile 、 sequencefile 、 rcfile 、 orc 、自定義 set hive.default.fileformat=TextFile; 默認存儲格式為:textfile textFile:普通文本存儲,不進行壓縮。查詢效率較低。

1.sequencefile:

hive提供的二進制序列文件存儲,天生壓縮。

sequeceFile 和 rcfile都不允許使用load方式加載數據。需要使用insert 方式插入

默認支付壓縮、分割,使用便捷、寫和查詢較快。sequencefile和壓縮屬性可以搭配使用。

create table if not exists seq1(
id int,
name string
)
row format delimited fields terminated by '\t'
lines terminated by '\n'
stored as sequencefile
;
###加載數據錯誤方式
load data local inpath '/home/user' into table seq1;
###加載數據正確方式
insert into table seq1
select * from user1
;

2.rcfile:

 rcfile可以進行行列混合壓縮,將附近的列和行的數據盡量保存到相同的塊里面,該存儲格式會提高查詢效率,但是寫數據較慢。該方式和gzcodeC壓縮屬性結合不是很好() set mapred.output.compression=true; set mapred.output.compression.codec=org.apache.hadoop.io.compress.GzipCodec;

###創建rcfile表:
create table if not exists rc1(
id int,
name string
)
row format delimited fields terminated by '\t'
stored as rcfile
;
create table if not exists rc2(
id int,
name string
)
row format delimited fields terminated by '\t'
stored as rcfile
;
###加載數據錯誤方式
load data local inpath '/home/user' into table rc1;
###加載數據正確方式
insert into table rc2
select * from user1
;

3.存儲自定義:

數據: seqyd元數據文件: aGVsbG8saGl2ZQ== aGVsbG8sd29ybGQ= aGVsbG8saGFkb29w seqyd文件為base64編碼后的內容,decode后數據為:

##hello,hive
##hello,world
##hello,hadoop
create table cus(str STRING)  
stored as  
inputformat 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'  
outputformat 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextOutputFormat';  
LOAD DATA LOCAL INPATH '/home/cus' INTO TABLE cus;

通常是使用 defaultCodec + rcfile搭配效率最好

感謝你能夠認真閱讀完這篇文章,希望小編分享的“hive存儲格式有幾種”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

禹城市| 灵武市| 资源县| 武隆县| 晴隆县| 兴仁县| 五常市| 朝阳市| 宜昌市| 专栏| 建湖县| 曲周县| 城市| 保山市| 方城县| 封开县| 阿拉善右旗| 仙居县| 许昌县| 社旗县| 兴宁市| 罗定市| 阿勒泰市| 辽阳县| 都安| 大同县| 从化市| 新巴尔虎右旗| 师宗县| 汝南县| 盐边县| 新泰市| 浦县| 中江县| 徐州市| 泰顺县| 环江| 临武县| 阳新县| 时尚| 项城市|