Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/streams/quickstart.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,11 @@ <h4><a id="quickstart_streams_start" href="#quickstart_streams_start">Step 4: St
Hence there won't be any STDOUT output except log entries as the results are written back into in Kafka.
</p>

Optionally, pass in a configuration file containing <code>group.protocol=streams</code> to enable the new rebalancing protocol introduced in KIP-1071.
This shifts task assignment logic from the client to the broker, reducing rebalance times and eliminating stop-the-world rebalances.

<pre><code class="language-bash">$ bin/kafka-run-class.sh org.apache.kafka.streams.examples.wordcount.WordCountDemo streams.properties</code></pre>

Now we can start the console producer in a separate terminal to write some input data to this topic:

<pre><code class="language-bash">$ bin/kafka-console-producer.sh --bootstrap-server localhost:9092 --topic streams-plaintext-input</code></pre>
Expand Down