Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 parquet-mr 中,目前我们可以指定默认情况下应用于所有列的压缩。将来,当支持指定特定于单个列的压缩时,是否仍支持当前对“默认压缩”的支持,还是会被弃用?
谢谢,拉维C
DefaultCodec 只是映射到预定义的其他压缩算法
https://hadoop.apache.org/docs/current/api/src-html/org/apache/hadoop/io/compress/DefaultCodec.html#line.68
它目前映射到 ZLib 压缩。
DefaultCodec 仍然存在,但它的映射可能会在未来发生变化,我猜例如,到 SnappyCodec..