jolshan commented on code in PR #13608: URL: https://github.com/apache/kafka/pull/13608#discussion_r1197988031
########## storage/src/main/java/org/apache/kafka/storage/internals/log/ProducerStateEntry.java: ########## @@ -104,27 +122,63 @@ public boolean maybeUpdateProducerEpoch(short producerEpoch) { } } + public boolean maybeUpdateProducerHigherEpoch(short producerEpoch) { + if (this.producerEpoch < producerEpoch) { + batchMetadata.clear(); + this.producerEpoch = producerEpoch; + return true; Review Comment: currently no. I was modeling it off the above method, but I can change to void. -- 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