You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by gw...@apache.org on 2019/06/16 04:00:28 UTC

[kafka] branch trunk updated: MINOR: Fix expected output in Streams quickstart

This is an automated email from the ASF dual-hosted git repository.

gwenshap pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new c758122  MINOR: Fix expected output in Streams quickstart
c758122 is described below

commit c758122ce59674ec3e33618d896e4e5cdbb45e87
Author: Vahid Hashemian <va...@us.ibm.com>
AuthorDate: Sat Jun 15 21:00:09 2019 -0700

    MINOR: Fix expected output in Streams quickstart
    
    Include the topic config `segment.bytes`.
    
    Author: Vahid Hashemian <va...@us.ibm.com>
    
    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 c89f405..4c0d0c9 100644
--- a/docs/streams/quickstart.html
+++ b/docs/streams/quickstart.html
@@ -165,10 +165,10 @@ The created topic can be described with the same <b>kafka-topics</b> tool:
 <pre class="brush: bash;">
 &gt; 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
 </pre>
 
 <h4><a id="quickstart_streams_start" href="#quickstart_streams_start">Step 4: Start the Wordcount Application</a></h4>