From 0934dc2196525156aee26f333f0bbb0467e271b1 Mon Sep 17 00:00:00 2001 From: Manikumar Reddy Date: Thu, 17 Aug 2017 15:25:16 +0530 Subject: [PATCH] KAFKA-5686: update compression docs --- docs/design.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design.html b/docs/design.html index 564df386db781..489cb1bbe637d 100644 --- a/docs/design.html +++ b/docs/design.html @@ -136,7 +136,7 @@

End-to-end Batch Compr Kafka supports this with an efficient batching format. 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.

- Kafka supports GZIP, Snappy and LZ4 compression protocols. More details on compression can be found here. + Kafka supports GZIP, Snappy and LZ4 compression protocols. Compression related config properties can be found in the Broker configs and Producer configs sections.

4.4 The Producer