Uploaded image for project: 'Kafka'
  1. Kafka
  2. KAFKA-10432

LeaderEpochCache is incorrectly recovered on segment recovery for epoch 0

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 2.3.0, 2.4.0, 2.5.0, 2.6.0
    • 2.6.1
    • None
    • None

    Description

      I added some functionality to the system tests to compare epoch cache lineages (https://github.com/apache/kafka/pull/9213), and I found a bug in leader epoch cache recovery.

      The test hard kills a broker and the cache hasn't been flushed yet, and then it starts up and goes through log recovery. After recovery there is divergence in the epoch caches for epoch 0:

      AssertionError: leader epochs for output-topic-1 didn't match
       [{0: 9393L, 2: 9441L, 4: 42656L},
       {0: 0L, 2: 9441L, 4: 42656L}, 
       {0: 0L, 2: 9441L, 4: 42656L}]                                                                                                                                                                
      

      The cache is supposed to include the offset for epoch 0 but in recovery it skips it https://github.com/apache/kafka/blob/487b3682ebe0eefde3445b37ee72956451a9d15e/core/src/main/scala/kafka/log/LogSegment.scala#L364 due to https://github.com/apache/kafka/commit/d152989f26f51b9004b881397db818ad6eaf0392. Then it stamps the epoch with a later offset when fetching from the leader.

      I'm not sure why the recovery code includes the condition `batch.partitionLeaderEpoch > 0`. I discussed this with Jason Gustafson and he believes it may have been intended to avoid assigning negative epochs but is not sure why it was added. None of the tests fail with this check removed.

                leaderEpochCache.foreach { cache =>
                  if (batch.partitionLeaderEpoch > 0 && cache.latestEpoch.forall(batch.partitionLeaderEpoch > _))
                    cache.assign(batch.partitionLeaderEpoch, batch.baseOffset)
                }
      

      Attachments

        Issue Links

          Activity

            People

              lucasbradstreet Lucas Bradstreet
              lucasbradstreet Lucas Bradstreet
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: