nerdexam
Confluent

CCAAK · Question #3

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…

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…

Monitoring and Troubleshooting

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

How the community answered

(63 responses)
  • A
    16% (10)
  • B
    71% (45)
  • C
    10% (6)
  • D
    3% (2)

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>

Topics

#consumer lag#kafka-consumer-groups.sh#consumer monitoring

Community Discussion

No community discussion yet for this question.

Full CCAAK Practice