mjsax commented on a change in pull request #8996: URL: https://github.com/apache/kafka/pull/8996#discussion_r451927714
########## File path: streams/src/main/java/org/apache/kafka/streams/processor/internals/StateManagerUtil.java ########## @@ -104,17 +104,16 @@ static void closeStateManager(final Logger log, if (stateDirectory.lock(id)) { try { stateMgr.close(); - + } catch (final ProcessorStateException e) { + firstException.compareAndSet(null, e); + } finally { if (wipeStateStore) { log.debug("Wiping state stores for {} task {}", taskType, id); // we can just delete the whole dir of the task, including the state store images and the checkpoint files, // and then we write an empty checkpoint file indicating that the previous close is graceful and we just // need to re-bootstrap the restoration from the beginning Utils.delete(stateMgr.baseDir()); Review comment: Well, it could be some other issue and we would wipe the state on "resuming" the task anyway. Not sure if there are other things to consider? \cc @guozhangwang ---------------------------------------------------------------- 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