Bird
0
0

Why might eager rebalancing cause more message duplication or processing delays compared to cooperative rebalancing?

hard📝 Conceptual Q10 of 15
Kafka - Consumer Groups
Why might eager rebalancing cause more message duplication or processing delays compared to cooperative rebalancing?
ABecause eager rebalancing disables offset commits during rebalance.
BBecause eager rebalancing revokes all partitions at once, causing longer pauses and potential duplicate processing.
CBecause eager rebalancing assigns partitions without consumer coordination.
DBecause eager rebalancing requires manual heartbeat management.
Step-by-Step Solution
Solution:
  1. Step 1: Analyze eager rebalancing impact on processing

    Eager rebalancing revokes all partitions simultaneously, causing consumers to pause longer and possibly reprocess messages.
  2. Step 2: Evaluate other options

    Offset commits are not disabled by eager rebalancing; partition assignment is coordinated; heartbeat management is automatic.
  3. Final Answer:

    Because eager rebalancing revokes all partitions at once, causing longer pauses and potential duplicate processing. -> Option B
  4. Quick Check:

    Eager rebalance impact = A [OK]
Quick Trick: Full revokes cause longer pauses and duplicates [OK]
Common Mistakes:
  • Thinking offset commits are disabled
  • Assuming partition assignment is uncoordinated
  • Believing heartbeat management is manual

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kafka Quizzes