Hi friends, Anyone noticed that calling:
./bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --describe --group group1 Is way slower than calling: ./bin/kafka-consumer-groups.sh --zookeeper zk.host:2181 --describe --group group2 Im my case first command takes about 4min, second take about 20sec! - Both group1 and group2 are consuming the same list of topics (~400 topics, ~2000 partitions) - group1 is using new consumer, and Kafka offset-storage. - group2 is using old consumer, and ZK offset-storage. - Kafka using Kafka 0.10.1.1 - ZK 3.5.1 Any idea how to get the list of consumer offsets faster? Thank you.
