Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Kafka producer and consumer console subsribe multiple topic ubuntu

avatar

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.