kafka runtime_error ai_generated true

CommitFailedException: consumer poll timeout exceeded

ID: kafka/consumer-timeout

Also available as: JSON · Markdown
80%Fix Rate
84%Confidence
3Evidence
2023-01-01First Seen

Version Compatibility

VersionStatusIntroducedDeprecatedNotes
3 active

Root Cause

Consumer processing took longer than max.poll.interval.ms.

generic

Workarounds

  1. 90% success Reduce max.poll.records to smaller batch size
  2. 88% success Process records async and commit offsets after completion

Dead Ends

Common approaches that don't work:

  1. Set max.poll.interval.ms to hours 78% fail

    Delays rebalance detection

  2. Process all records synchronously in poll loop 72% fail

    Same timeout issue