gwenshap / kafka-streams-wordcount

Apache License 2.0
60 stars 46 forks source link

Updated Kafka streams maven version & fixed readme #8

Closed busybee1149 closed 5 months ago

busybee1149 commented 4 years ago

used mvn commands to build and package Verified the change works by following Readme instructions.

bin/kafka-console-producer.sh --broker-list localhost:9092 --topic wordcount-input
>hello
>world
>mean
>fancy
>fancier
>forest
>farce
>farther
>far
>farm
>farm
>mean
bin/kafka-console-consumer.sh --topic wordcount-output --from-beginning --bootstrap-server localhost:9092 --property print.key=true

hello   1
world   1
mean    1
fancy   1
fancier 1
forest  1
farce   1
farther 1
far 1
farm    2
mean    2