I've been experiencing this issue across several of our environments ever since we enabled the log cleaner for the __consumer_offsets topic.
We are on version 0.8.2.1 of kafka, using the new producer. All of our consumers are set to commit to kafka only. Below is the stack trace in the log I've encountered across several different clusters. A simple restart of kafka will allow compaction to continue on all of the other partitions but the incorrect one will always fail. Here are the values for it from the kafka-topics --describe command: Topic:__consumer_offsets PartitionCount:50 ReplicationFactor:3 Configs:segment.bytes=104857600,cleanup.policy=compact Are there any recommendations on how to prevent this and the best way to recover from this exception? This is causing disk space to fill up quickly on the node. I did see an open issue that seems very similar to this https://issues.apache.org/jira/browse/KAFKA-1641 but this is the __consumer_offsets topic which I have not had any part in setting up nor producing to. [2015-09-18 02:57:25,520] INFO Cleaner 0: Beginning cleaning of log __consumer_offsets-17. (kafka.log.LogCleaner) [2015-09-18 02:57:25,520] INFO Cleaner 0: Building offset map for __consumer_offsets-17... (kafka.log.LogCleaner) [2015-09-18 02:57:25,609] INFO Cleaner 0: Building offset map for log __consumer_offsets-17 for 46 segments in offset range [468079184, 528707475). (kafka.log.LogCleaner) [2015-09-18 02:57:25,645] ERROR [kafka-log-cleaner-thread-0], Error due to (kafka.log.LogCleaner) java.lang.IllegalArgumentException: requirement failed: Last clean offset is 468079184 but segment base offset is 0 for log __consumer_offsets-17. at scala.Predef$.require(Predef.scala:233) at kafka.log.Cleaner.buildOffsetMap(LogCleaner.scala:509) at kafka.log.Cleaner.clean(LogCleaner.scala:307) at kafka.log.LogCleaner$CleanerThread.cleanOrSleep(LogCleaner.scala:221) at kafka.log.LogCleaner$CleanerThread.doWork(LogCleaner.scala:199) at kafka.utils.ShutdownableThread.run(ShutdownableThread.scala:60) [2015-09-18 02:57:25,654] INFO [kafka-log-cleaner-thread-0], Stopped (kafka.log.LogCleaner) -John