Github user uce commented on a diff in the pull request:
https://github.com/apache/flink/pull/640#discussion_r31131305
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/ResultPartitionManager.java
---
@@ -137,9 +211,46 @@ void onConsumedPartition(ResultPartition partition) {
// Release the partition if it was successfully removed
if (partition == previous) {
- partition.release();
+ // move to cache if cachable
+ updateIntermediateResultPartitionCache(partition);
- LOG.debug("Released {}.", partition);
+ LOG.debug("Cached {}.", partition);
--- End diff --
Let's adjust this log message to reflect that a partition might also be
released after the update call.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---