I am new to apache kafka and I have set up a kafka-broker with zookeeper on top of my self-deployed kubernetes cluster. (2 seperate pods)
There is no noticeable error logs and everything works fine including:
- creating topics
- producing messages through bin/kafka-console-producer.sh
- subscribing(consuming) messages through bin/kafka-console-consumer.sh
- Listing topics in zookeeper CLI ( ls /brokers/ids )
Except:
- listing active consumers in the kafka offset monitoring tool
when I try listing active consumers in zookeeper CLI or view active consumers in the monitoring tool, I get empty results as well.(while I have a consumer session running describe above)
Integration between zookeeper and kafka broker seems to work find since when I try:
[zk: localhost:2181(CONNECTED) 1] ls /brokers/topics
[topic1, topic2]
[zk: localhost:2181(CONNECTED) 2] ls /consumers
[]
Am I missing something??