azagrebin commented on a change in pull request #10050:
[FLINK-14530][coordination] Capture DataSetID for partitions on TaskExecutor
URL: https://github.com/apache/flink/pull/10050#discussion_r341537017
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/TaskExecutorPartitionInfo.java
##########
@@ -17,8 +17,20 @@
package org.apache.flink.runtime.io.network.partition;
+import org.apache.flink.runtime.jobgraph.IntermediateDataSetID;
+
/**
* Encapsulates meta-information the TaskExecutor requires to be kept for each
partition.
*/
public final class TaskExecutorPartitionInfo {
+
+ private final IntermediateDataSetID intermediateDataSetId;
+
+ public TaskExecutorPartitionInfo(IntermediateDataSetID
intermediateDataSetId) {
Review comment:
do we already envision more fields?
I was just wondering whether we could keep just `IntermediateDataSetID` and
switch to `TaskExecutorPartitionInfo` later when needed
----------------------------------------------------------------
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