From c758122ce59674ec3e33618d896e4e5cdbb45e87 Mon Sep 17 00:00:00 2001 From: Vahid Hashemian Date: Sat, 15 Jun 2019 21:00:09 -0700 Subject: [PATCH] MINOR: Fix expected output in Streams quickstart Include the topic config `segment.bytes`. Author: Vahid Hashemian Reviewers: Gwen Shapira Closes #6945 from vahidhashemian/minor/update_streams_quickstart_doc --- docs/streams/quickstart.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/streams/quickstart.html b/docs/streams/quickstart.html index c89f4054ae2..4c0d0c92b73 100644 --- a/docs/streams/quickstart.html +++ b/docs/streams/quickstart.html @@ -165,10 +165,10 @@ The created topic can be described with the same kafka-topics tool:
 > bin/kafka-topics.sh --bootstrap-server localhost:9092 --describe
 
-Topic:streams-plaintext-input	PartitionCount:1	ReplicationFactor:1	Configs:
-    Topic: streams-plaintext-input	Partition: 0	Leader: 0	Replicas: 0	Isr: 0
-Topic:streams-wordcount-output	PartitionCount:1	ReplicationFactor:1	Configs:cleanup.policy=compact
+Topic:streams-wordcount-output	PartitionCount:1	ReplicationFactor:1	Configs:cleanup.policy=compact,segment.bytes=1073741824
 	Topic: streams-wordcount-output	Partition: 0	Leader: 0	Replicas: 0	Isr: 0
+Topic:streams-plaintext-input	PartitionCount:1	ReplicationFactor:1	Configs:segment.bytes=1073741824
+	Topic: streams-plaintext-input	Partition: 0	Leader: 0	Replicas: 0	Isr: 0
 

Step 4: Start the Wordcount Application