MAPREDUCE服务 MRS-Hive ORC数据存储优化:操作步骤
操作步骤
- 推荐:使用“SNAPPY”压缩,适用于压缩比和读取效率要求均衡场景。
Create table xx (col_name data_type) stored as orc tblproperties ("orc.compress"="SNAPPY");
- 可用:使用“ZLIB”压缩,适用于压缩比要求较高场景。
Create table xx (col_name data_type) stored as orc tblproperties ("orc.compress"="ZLIB");
xx为具体使用的Hive表名。