Repository: kafka Updated Branches: refs/heads/trunk 9c4c5ae1c -> 287cce251
MINOR: update compression design doc to include lz4 protocol Author: Manikumar reddy O <[email protected]> Reviewers: Ismael Juma, Guozhang Wang Closes #1040 from omkreddy/MINOR-DOC Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/287cce25 Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/287cce25 Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/287cce25 Branch: refs/heads/trunk Commit: 287cce251f7d5471946d550031147aaab4e7ca26 Parents: 9c4c5ae Author: Manikumar reddy O <[email protected]> Authored: Fri Mar 11 10:56:21 2016 -0800 Committer: Guozhang Wang <[email protected]> Committed: Fri Mar 11 10:56:21 2016 -0800 ---------------------------------------------------------------------- docs/design.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/287cce25/docs/design.html ---------------------------------------------------------------------- diff --git a/docs/design.html b/docs/design.html index 7f7ca05..c04b772 100644 --- a/docs/design.html +++ b/docs/design.html @@ -100,7 +100,7 @@ In some cases the bottleneck is actually not CPU or disk but network bandwidth. <p> Kafka supports this by allowing recursive message sets. A batch of messages can be clumped together compressed and sent to the server in this form. This batch of messages will be written in compressed form and will remain compressed in the log and will only be decompressed by the consumer. <p> -Kafka supports GZIP and Snappy compression protocols. More details on compression can be found <a href="https://cwiki.apache.org/confluence/display/KAFKA/Compression">here</a>. +Kafka supports GZIP, Snappy and LZ4 compression protocols. More details on compression can be found <a href="https://cwiki.apache.org/confluence/display/KAFKA/Compression">here</a>. <h3><a id="theproducer" href="#theproducer">4.4 The Producer</a></h3>
