Re: Retrieving last message offset in high level consumer

2015-10-01 Thread Karthikeyan Annamalai
If i am not wrong, the auto commit might have happened so, when you start the consumer it should work fine. Also keep it in mind that Kafka works on at least one delivery model so we should expect redundant message while restarting the consumer. On Oct 2, 2015 4:06 AM, "eugene miretsky" wrote: >

Retrieving last message offset in high level consumer

2015-10-01 Thread eugene miretsky
Hi, We would like to log the offset of a Kafka message if we fail to process it (so we can try to re-process it later). Is it possible to get the offset using the high level consumer? I took a quick look at the code, and: - It seems like the offset it private in the current Scala consumer