我正在尝试压缩创建的RC表,如下所示:
create table rc_test(
a string,
b string)
stored as rcfile
我还有一张镶木地板,是通过以下方式完成的:
alter table parquet_test set tblproperties ("parquet.compression"="snappy");
RC表的tblproperties
是什么?
答案 0 :(得分:0)
您可以在Hive中插入覆盖表之前,在同一会话中设置此属性:
SET hive.exec.compress.output=true;
SET mapred.output.compression.type=BLOCK;
SET mapred.output.compression.codec=org.apache.hadoop.io.compress.SnappyCodec;