ableegoldman commented on a change in pull request #9978: URL: https://github.com/apache/kafka/pull/9978#discussion_r565746851
########## File path: streams/src/main/java/org/apache/kafka/streams/KafkaStreams.java ########## @@ -782,8 +783,27 @@ private KafkaStreams(final InternalTopologyBuilder internalTopologyBuilder, final Time time) throws StreamsException { this.config = config; this.time = time; + + this.internalTopologyBuilder = internalTopologyBuilder; + internalTopologyBuilder.rewriteTopology(config); + + // sanity check to fail-fast in case we cannot build a ProcessorTopology due to an exception + taskTopology = internalTopologyBuilder.buildTopology(); + globalTaskTopology = internalTopologyBuilder.buildGlobalStateTopology(); + + final boolean hasGlobalTopology = globalTaskTopology != null; + final boolean hasPersistentStores = taskTopology.hasPersistentLocalStore() || + (hasGlobalTopology && globalTaskTopology.hasPersistentGlobalStore()); + + try { + stateDirectory = new StateDirectory(config, time, hasPersistentStores); + processId = stateDirectory.getProcessId(); Review comment: This is the only real change in the constructor, but I had to move a few things around and tried to organize them as I went ---------------------------------------------------------------- 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