mjsax commented on a change in pull request #8886: URL: https://github.com/apache/kafka/pull/8886#discussion_r441917481
########## File path: streams/src/main/java/org/apache/kafka/streams/processor/internals/StandbyTask.java ########## @@ -85,6 +85,21 @@ public void initializeMetadata() {} public boolean initializeStateStores() { log.trace("Initializing state stores"); registerStateStores(); + + if (eosEnabled) { + final Set<TopicPartition> partitionsToReinitialize = new HashSet<>(); + for (final TopicPartition partition : stateMgr.checkpointed().keySet()) { Review comment: Not sure how to proceed? The naming issue might be a general problem, that we might want to fix in trunk/2.6? Is is worth to fix in 2.5? ---------------------------------------------------------------- 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