HIVE中ORC表的压缩比较
ORC支持三种压缩:ZLIB,SNAPPY,NONE。最后一种就是不压缩,orc默认采用的是ZLIB压缩。1.创建一个不压缩的ORC存储方式表create table test_orc_none (track_time string,url string,ip string)row format delimited fields terminated by '\t'stored as orc tblproperties("orc.compress"="NONE") ;insert in







