Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Kafka producer and consumer console subsribe multiple topic ubuntu

avatar
Contributor

I use Ubuntu server 16.04 to try using Kafka, for the command to start producer and consumer console i use

Producer console : bin/kafka-console-producer.sh --broker-list localhost:9092 --topic hello-topic

consumer console : bin/kafka-console-consumer.sh --zookeeper localhost:2181 --from-beginning --topic hello-topic

but command above only subsribe to one topic, how can i subsribe to multiple topic?

Thanks.

1 ACCEPTED SOLUTION

avatar
@Bramantya Anggriawan

Console consumer does not support multiple topics.

You need to run separate consumer for each topic.

View solution in original post

1 REPLY 1

avatar
@Bramantya Anggriawan

Console consumer does not support multiple topics.

You need to run separate consumer for each topic.