Reputation: 4051
I am using the Kafka 0.9 "new" consumer API to connect to Kafka 0.9.0.0. Every couple of minutes, the following error is logged:
2016-01-27T16:38:14,584Z [pool-1-thread-1] ERROR o.a.k.c.c.i.ConsumerCoordinator - Auto offset commit failed. org.apache.kafka.clients.consumer.internals.SendFailedException: null
Here is a gist of my broker and consumer configs.
There are no corresponding/concerning log messages in the broker logs, and records appear to be flowing through my system just fine. This message is mainly an annoyance, causing distracting alerts and noise.
I'm curious to know what this exception means, but my real questions are:
SendFailedException
log messagesUpvotes: 2
Views: 9012
Reputation: 3270
I have the same error message in different place (Heron and KafkaSpout)! My finding is the following:
If you use enable.auto.commit = true
you must not use consumer.commitAsync();
Upvotes: 2