CCAAK · Question #54
When a message is committed on a partition, the leader will advance which of the following?
The correct answer is C. High Water Mark. In Kafka, when a message is committed on a partition, the leader broker for that partition advances the High Water Mark (HWM). Here's what each term means in this context: High Water Mark (HWM): This is the offset up to which all consumers in a consumer group have successfully…
Question
When a message is committed on a partition, the leader will advance which of the following?
Options
- APartition log offset
- BLog end offset
- CHigh Water Mark
- DConsumer Group offset
How the community answered
(30 responses)- A3% (1)
- B7% (2)
- C73% (22)
- D17% (5)
Explanation
In Kafka, when a message is committed on a partition, the leader broker for that partition advances the High Water Mark (HWM). Here's what each term means in this context: High Water Mark (HWM): This is the offset up to which all consumers in a consumer group have successfully processed messages. The leader advances the HWM whenever a message is successfully acknowledged by all in-sync replicas. The HWM represents the highest offset that has been fully committed and acknowledged, ensuring consumers know the latest messages they
Topics
Community Discussion
No community discussion yet for this question.