This is an automated email from the ASF dual-hosted git repository.
shangxinli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git
The following commit(s) were added to refs/heads/master by this push:
new 8ae7f31 PARQUET-2041: Add zstd to `parquet.compression` description
of ParquetOutputFormat Javadoc (#899)
8ae7f31 is described below
commit 8ae7f31e36a298804435565e0cae584aac90f6d5
Author: William Hyun <[email protected]>
AuthorDate: Sun May 23 20:07:49 2021 -0700
PARQUET-2041: Add zstd to `parquet.compression` description of
ParquetOutputFormat Javadoc (#899)
The current Javadoc doesn't mention zstd.
https://javadoc.io/doc/org.apache.parquet/parquet-hadoop/latest/org/apache/parquet/hadoop/ParquetOutputFormat.html
This PR aims to make Javadoc up-to-date by adding zstd.
---
.../src/main/java/org/apache/parquet/hadoop/ParquetOutputFormat.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/parquet-hadoop/src/main/java/org/apache/parquet/hadoop/ParquetOutputFormat.java
b/parquet-hadoop/src/main/java/org/apache/parquet/hadoop/ParquetOutputFormat.java
index 71c802d..eb91007 100644
---
a/parquet-hadoop/src/main/java/org/apache/parquet/hadoop/ParquetOutputFormat.java
+++
b/parquet-hadoop/src/main/java/org/apache/parquet/hadoop/ParquetOutputFormat.java
@@ -73,7 +73,7 @@ import org.slf4j.LoggerFactory;
* parquet.dictionary.page.size=1048576 # in bytes, default = 1 * 1024 * 1024
*
* # The compression algorithm used to compress pages
- * parquet.compression=UNCOMPRESSED # one of: UNCOMPRESSED, SNAPPY, GZIP, LZO.
Default: UNCOMPRESSED. Supersedes mapred.output.compress*
+ * parquet.compression=UNCOMPRESSED # one of: UNCOMPRESSED, SNAPPY, GZIP, LZO,
ZSTD. Default: UNCOMPRESSED. Supersedes mapred.output.compress*
*
* # The write support class to convert the records written to the
OutputFormat into the events accepted by the record consumer
* # Usually provided by a specific ParquetOutputFormat subclass