我试图压缩rc表,创建如下:
create table rc_test( a string, b string) stored as rcfile
我还有一张Parquet桌,我是这样做的:
alter table parquet_test set tblproperties ("parquet.compression"="snappy");
什么是 tblproperties 对于rc表?
tblproperties
niwlg2el1#
在配置单元中插入覆盖表之前,可以在同一会话中设置此属性:
SET hive.exec.compress.output=true; SET mapred.output.compression.type=BLOCK; SET mapred.output.compression.codec=org.apache.hadoop.io.compress.SnappyCodec;
1条答案
按热度按时间niwlg2el1#
在配置单元中插入覆盖表之前,可以在同一会话中设置此属性: