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_r401892083
##########
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:
I don't fully understand your concerns, could you explain what are they?
On close, `taskStateManager` will close all opened input streams (without
waiting for the task thread).
----------------------------------------------------------------
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