ccding commented on a change in pull request #10763: URL: https://github.com/apache/kafka/pull/10763#discussion_r657559556
########## File path: core/src/main/scala/kafka/log/LogLoader.scala ########## @@ -90,11 +90,79 @@ object LogLoader extends Logging { * overflow index offset */ def load(params: LoadLogParams): LoadedLogOffsets = { - // first do a pass through the files in the log directory and remove any temporary files + + // First pass: through the files in the log directory and remove any temporary files // and find any interrupted swap operations val swapFiles = removeTempFilesAndCollectSwapFiles(params) - // Now do a second pass and load all the log and index files. + // The remaining valid swap files must come from compaction operation. We can simply rename them Review comment: are you concerned about the logic or the comment? If comment only, I fixed it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org