wsry commented on code in PR #19653:
URL: https://github.com/apache/flink/pull/19653#discussion_r882463570
##########
flink-runtime/src/main/java/org/apache/flink/runtime/deployment/TaskDeploymentDescriptorFactory.java:
##########
@@ -137,6 +148,16 @@ private List<InputGateDeploymentDescriptor>
createInputGateDeploymentDescriptors
consumedIntermediateResult,
consumedPartitionGroup)));
}
+ for (Map.Entry<IntermediateDataSetID, ShuffleDescriptor[]> entry :
+ consumedClusterPartitionShuffleDescriptors.entrySet()) {
+ inputGates.add(
+ new InputGateDeploymentDescriptor(
+ entry.getKey(),
+ ResultPartitionType.BLOCKING_PERSISTENT,
+ 0,
Review Comment:
Why we always consumes subpartition 0? Does that mean for a cluster
partition, each Task always produces one subpartition?
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]