cmccabe commented on a change in pull request #10864: URL: https://github.com/apache/kafka/pull/10864#discussion_r662509722
########## File path: raft/src/main/java/org/apache/kafka/raft/KafkaRaftClient.java ########## @@ -2153,14 +2154,36 @@ private boolean maybeCompleteShutdown(long currentTimeMs) { return false; } - private void maybeDeleteBeforeSnapshot() { - log.latestSnapshotId().ifPresent(snapshotId -> { - quorum.highWatermark().ifPresent(highWatermark -> { - if (highWatermark.offset >= snapshotId.offset) { - log.deleteBeforeSnapshot(snapshotId); + /** + * A simple timer based log cleaner + */ + private static class RaftMetadataLogCleaner { Review comment: How about "CleanerManager" instead of "Cleaner"? The Runnable is what actually does the cleaning, right? -- 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. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org