mirror of https://github.com/apache/kafka.git
MINOR: Streams input topic corrected (#6513)
Though out the tutorial, the name of the input topic that was created is `streams-plaintext-input`. However, this was mistaken at some point in the tutorial and changed to `streams-wordcount-input`. This patch is to adjust that. Thanks. Reviewers: Guozhang Wang <wangguoz@gmail.com>
This commit is contained in:
parent
b25974c387
commit
17f73b42ad
|
@ -276,10 +276,10 @@ streams 2
|
||||||
Here the last printed lines <b>kafka 2</b> and <b>streams 2</b> indicate updates to the keys <b>kafka</b> and <b>streams</b> whose counts have been incremented from <b>1</b> to <b>2</b>.
|
Here the last printed lines <b>kafka 2</b> and <b>streams 2</b> indicate updates to the keys <b>kafka</b> and <b>streams</b> whose counts have been incremented from <b>1</b> to <b>2</b>.
|
||||||
Whenever you write further input messages to the input topic, you will observe new messages being added to the <b>streams-wordcount-output</b> topic,
|
Whenever you write further input messages to the input topic, you will observe new messages being added to the <b>streams-wordcount-output</b> topic,
|
||||||
representing the most recent word counts as computed by the WordCount application.
|
representing the most recent word counts as computed by the WordCount application.
|
||||||
Let's enter one final input text line "join kafka summit" and hit <RETURN> in the console producer to the input topic <b>streams-wordcount-input</b> before we wrap up this quickstart:
|
Let's enter one final input text line "join kafka summit" and hit <RETURN> in the console producer to the input topic <b>streams-plaintext-input</b> before we wrap up this quickstart:
|
||||||
|
|
||||||
<pre class="brush: bash;">
|
<pre class="brush: bash;">
|
||||||
> bin/kafka-console-producer.sh --broker-list localhost:9092 --topic streams-wordcount-input
|
> bin/kafka-console-producer.sh --broker-list localhost:9092 --topic streams-plaintext-input
|
||||||
all streams lead to kafka
|
all streams lead to kafka
|
||||||
hello kafka streams
|
hello kafka streams
|
||||||
join kafka summit
|
join kafka summit
|
||||||
|
|
Loading…
Reference in New Issue