I'm new to Apache Kafka and Kafkacat trying to learn new things from here: https://www.youtube.com/watch?v=5Mgni6AYnWg&t=123s at time 17:32
.
I setup a kafka and kafkacat on my remote VM.
[user@user bin]$ ./kafka-topics.sh --list --zookeeper localhost:2181
__consumer_offsets
quickstart-events
test
toUpperCase-in-0
toUpperCase-out-0
users-log
when I am typing some data over kafkacat then nothing is getting printed on another side.
[user@user bin]$ kafkacat -b localhost:9092 -t toUpperCase-in-0 -P
Hello
Hey
Hie
Howdy
John
Sam
Another termonal
[user@user ~]kafkacat -b localhost:9092 -t toUpperCase-out-0
% Auto-selecting Consumer mode (use -P or -C to override)
% Reached end of topic toUpperCase-out-0 [0] at offset 0
What could be the issue?
[user@userbin]$ ./kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic toUpperCase-in-0 --from-beginning