Skip to content

Commit

Permalink
[SPARK-19112][CORE][FOLLOW-UP] Add missing shortCompressionCodecNames…
Browse files Browse the repository at this point in the history
… to configuration.

## What changes were proposed in this pull request?

Spark provides four codecs: `lz4`, `lzf`, `snappy`, and `zstd`. This pr add missing shortCompressionCodecNames to configuration.

## How was this patch tested?

 manually tested

Author: Yuming Wang <[email protected]>

Closes #21431 from wangyum/SPARK-19112.
  • Loading branch information
wangyum authored and HyukjinKwon committed May 26, 2018
1 parent 1b1528a commit ed1a654
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -910,8 +910,8 @@ Apart from these, the following properties are also available, and may be useful
<td>lz4</td>
<td>
The codec used to compress internal data such as RDD partitions, event log, broadcast variables
and shuffle outputs. By default, Spark provides three codecs: <code>lz4</code>, <code>lzf</code>,
and <code>snappy</code>. You can also use fully qualified class names to specify the codec,
and shuffle outputs. By default, Spark provides four codecs: <code>lz4</code>, <code>lzf</code>,
<code>snappy</code>, and <code>zstd</code>. You can also use fully qualified class names to specify the codec,
e.g.
<code>org.apache.spark.io.LZ4CompressionCodec</code>,
<code>org.apache.spark.io.LZFCompressionCodec</code>,
Expand Down

0 comments on commit ed1a654

Please sign in to comment.