rkhachatryan commented on a change in pull request #11515: [FLINK-16744][task]
implement channel state persistence for unaligned checkpoints
URL: https://github.com/apache/flink/pull/11515#discussion_r403053686
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/taskmanager/Task.java
##########
@@ -914,6 +914,11 @@ private void closeNetworkResources() {
LOG.error("Failed to release input gate for
task {}.", taskNameWithSubtask, t);
}
}
+ try {
+ taskStateManager.close();
Review comment:
Thanks for the explanation.
I will move `taskStateManager.close()` to `releaseResources()` which is
called from `doRun` and not task canceller.
----------------------------------------------------------------
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:
[email protected]
With regards,
Apache Git Services