- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Getting the Error While describing the kafka consumer group .
- Labels:
-
Apache Kafka
Created ‎03-08-2017 05:11 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi All,
I am trying to describe the Kafka Consumer group by the below command .
bin/kafka-consumer-groups.sh --new-consumer --bootstrap-server broker1:9092,broker2:9092 --describe --group console-consumer-44261 --command-config conf/security_user_created
But I am getting an error as
Consumer group `console-consumer-44261` does not exist or is rebalancing.
I have checked the zookeeper , the consumer group exist and I am always getting this error .
Could some point out me here , what mistake I am making here .
Kakfa version I am using is 0.9 .
Thanks in advance ,
Param.
Created ‎03-08-2017 07:08 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@Param NC From command I can see that you are using --new-consumer to describe consumer group. When new consumer is used it tries to fetch consumer group info from consumer offset topics which gets created in kafka log directory.
Try using --zookeeper instead of --new-consumer, for eg :
$ /usr/bin/kafka-consumer-groups.sh --zookeeper <zookeeper-hostname>:2181 --describe --group <consumer-group>
