Repository: spark Updated Branches: refs/heads/master b4fb7b80a -> c6469a02f
[SPARK-3766][Doc]Snappy is also the default compress codec for broadcast variables Author: scwf <[email protected]> Closes #2632 from scwf/compress-doc and squashes the following commits: 7983a1a [scwf] snappy is the default compression codec for broadcast Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/c6469a02 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/c6469a02 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/c6469a02 Branch: refs/heads/master Commit: c6469a02f14e8c23e9b4e1336768f8bbfc15f5d8 Parents: b4fb7b8 Author: scwf <[email protected]> Authored: Thu Oct 2 13:47:30 2014 -0700 Committer: Reynold Xin <[email protected]> Committed: Thu Oct 2 13:47:30 2014 -0700 ---------------------------------------------------------------------- docs/configuration.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/c6469a02/docs/configuration.md ---------------------------------------------------------------------- diff --git a/docs/configuration.md b/docs/configuration.md index 791b6f2..316490f 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -413,10 +413,11 @@ Apart from these, the following properties are also available, and may be useful <td><code>spark.io.compression.codec</code></td> <td>snappy</td> <td> - The codec used to compress internal data such as RDD partitions 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, e.g. - <code>org.apache.spark.io.LZ4CompressionCodec</code>, + The codec used to compress internal data such as RDD partitions, 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, + e.g. + <code>org.apache.spark.io.LZ4CompressionCodec</code>, <code>org.apache.spark.io.LZFCompressionCodec</code>, and <code>org.apache.spark.io.SnappyCompressionCodec</code>. </td> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
