Confluent
CCAAK · Question #3
CCAAK Question #3: Real Exam Question with Answer & Explanation
The correct answer is B. bin/kafka-consumer-groups.sh. The kafka-consumer-groups.sh script is used to inspect consumer group details, including consumer lag, which indicates how far behind a consumer is from the latest data in the partition. The typical usage is bin/kafka-consumer-groups.sh --bootstrap-server <broker> --describe -- g
Question
An employee in the reporting department needs assistance because their data feed is slowing down. You need to check the consumer lag for the clients on the data stream. Which command will allow you to quickly check for lag on the consumers?
Options
- Abin/kafka-consumer-lag.sh
- Bbin/kafka-consumer-groups.sh
- Cbin/kafka-consumer-group-throughput.sh
- Dbin/kafka-reassign-partitions.sh
Explanation
The kafka-consumer-groups.sh script is used to inspect consumer group details, including consumer lag, which indicates how far behind a consumer is from the latest data in the partition. The typical usage is bin/kafka-consumer-groups.sh --bootstrap-server <broker> --describe -- group <group_id>
Community Discussion
No community discussion yet for this question.