zhuzhurk commented on a change in pull request #16688:
URL: https://github.com/apache/flink/pull/16688#discussion_r685116558



##########
File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/jobgraph/topology/LogicalEdge.java
##########
@@ -0,0 +1,34 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.apache.flink.runtime.jobgraph.topology;
+
+import org.apache.flink.runtime.jobgraph.DistributionPattern;
+import org.apache.flink.runtime.jobgraph.IntermediateDataSet;
+import org.apache.flink.runtime.jobgraph.JobEdge;
+import org.apache.flink.runtime.jobgraph.JobVertex;
+
+/** Represents a vertex in {@link LogicalTopology}, i.e. {@link JobEdge}. */
+public interface LogicalEdge {
+
+    DistributionPattern getDistributionPattern();

Review comment:
       Documents are needed for these interface methods.

##########
File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/jobgraph/topology/LogicalEdge.java
##########
@@ -0,0 +1,34 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.apache.flink.runtime.jobgraph.topology;
+
+import org.apache.flink.runtime.jobgraph.DistributionPattern;
+import org.apache.flink.runtime.jobgraph.IntermediateDataSet;
+import org.apache.flink.runtime.jobgraph.JobEdge;
+import org.apache.flink.runtime.jobgraph.JobVertex;
+
+/** Represents a vertex in {@link LogicalTopology}, i.e. {@link JobEdge}. */
+public interface LogicalEdge {
+
+    DistributionPattern getDistributionPattern();
+
+    JobVertex getTarget();

Review comment:
       `JobVertex` and `IntermediateDataSet` should not be part of the 
interface. They are too heavy.
   Would a `getProducerVertexId()` suffice?

##########
File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/failover/flip1/LogicalPipelinedRegionComputeUtil.java
##########
@@ -0,0 +1,113 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.apache.flink.runtime.executiongraph.failover.flip1;
+
+import org.apache.flink.runtime.jobgraph.topology.LogicalPipelinedRegion;
+import org.apache.flink.runtime.jobgraph.topology.LogicalResult;
+import org.apache.flink.runtime.jobgraph.topology.LogicalVertex;
+
+import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.IdentityHashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+
+import static 
org.apache.flink.runtime.executiongraph.failover.flip1.PipelinedRegionComputeUtil.mergeRegions;
+import static 
org.apache.flink.runtime.executiongraph.failover.flip1.PipelinedRegionComputeUtil.mergeRegionsOnCycles;
+
+/** Utils for computing {@link LogicalPipelinedRegion}s. */
+public final class LogicalPipelinedRegionComputeUtil {
+    public static Set<Set<LogicalVertex>> computePipelinedRegions(
+            final Iterable<? extends LogicalVertex> 
topologicallySortedVertexes) {
+        final Map<LogicalVertex, Set<LogicalVertex>> vertexToRegion =
+                buildRawRegions(topologicallySortedVertexes);
+        return mergeRegionsOnCycles(

Review comment:
       And then `PipelinedRegionComputeUtil#mergeRegions()` will only be needed 
by `SchedulingPipelinedRegionComputeUtil` and can be refactored into it.

##########
File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/failover/flip1/SchedulingPipelinedRegionComputeUtil.java
##########
@@ -0,0 +1,142 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.apache.flink.runtime.executiongraph.failover.flip1;
+
+import org.apache.flink.runtime.jobgraph.IntermediateResultPartitionID;
+import org.apache.flink.runtime.scheduler.strategy.ConsumedPartitionGroup;
+import org.apache.flink.runtime.scheduler.strategy.ConsumerVertexGroup;
+import org.apache.flink.runtime.scheduler.strategy.ExecutionVertexID;
+import org.apache.flink.runtime.scheduler.strategy.SchedulingExecutionVertex;
+import org.apache.flink.runtime.scheduler.strategy.SchedulingPipelinedRegion;
+import org.apache.flink.runtime.scheduler.strategy.SchedulingResultPartition;
+
+import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.IdentityHashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+import java.util.function.Function;
+
+import static 
org.apache.flink.runtime.executiongraph.failover.flip1.PipelinedRegionComputeUtil.mergeRegions;
+import static 
org.apache.flink.runtime.executiongraph.failover.flip1.PipelinedRegionComputeUtil.mergeRegionsOnCycles;
+
+/** Utils for computing {@link SchedulingPipelinedRegion}s. */
+public final class SchedulingPipelinedRegionComputeUtil {
+
+    public static Set<Set<SchedulingExecutionVertex>> computePipelinedRegions(
+            final Iterable<? extends SchedulingExecutionVertex> 
topologicallySortedVertexes,
+            final Function<ExecutionVertexID, ? extends 
SchedulingExecutionVertex>
+                    executionVertexRetriever,
+            final Function<IntermediateResultPartitionID, ? extends 
SchedulingResultPartition>
+                    resultPartitionRetriever) {
+
+        final Map<SchedulingExecutionVertex, Set<SchedulingExecutionVertex>> 
vertexToRegion =
+                buildRawRegions(topologicallySortedVertexes, 
resultPartitionRetriever);
+
+        return mergeRegionsOnCycles(
+                vertexToRegion,
+                (currentRegion, regionIndices) ->
+                        buildOutEdgesForRegion(
+                                currentRegion,
+                                regionIndices,
+                                vertexToRegion,
+                                executionVertexRetriever));
+    }
+
+    private static Map<SchedulingExecutionVertex, 
Set<SchedulingExecutionVertex>> buildRawRegions(
+            final Iterable<? extends SchedulingExecutionVertex> 
topologicallySortedVertexes,
+            final Function<IntermediateResultPartitionID, ? extends 
SchedulingResultPartition>
+                    resultPartitionRetriever) {
+
+        final Map<SchedulingExecutionVertex, Set<SchedulingExecutionVertex>> 
vertexToRegion =
+                new IdentityHashMap<>();
+
+        // iterate all the vertices which are topologically sorted
+        for (SchedulingExecutionVertex vertex : topologicallySortedVertexes) {
+            Set<SchedulingExecutionVertex> currentRegion = new HashSet<>();
+            currentRegion.add(vertex);
+            vertexToRegion.put(vertex, currentRegion);
+
+            for (ConsumedPartitionGroup consumedPartitionGroup :
+                    vertex.getConsumedPartitionGroups()) {
+                for (IntermediateResultPartitionID consumedPartitionId : 
consumedPartitionGroup) {
+                    SchedulingResultPartition consumedPartition =
+                            
resultPartitionRetriever.apply(consumedPartitionId);
+                    // Similar to the BLOCKING ResultPartitionType, each 
vertex connected through
+                    // PIPELINED_APPROXIMATE is also considered as a single 
region. This attribute
+                    // is called  "reconnectable". Reconnectable will be 
removed after FLINK-19895,
+                    // see also {@link  ResultPartitionType#isReconnectable}
+                    if (!consumedPartition.getResultType().isReconnectable()) {
+                        final SchedulingExecutionVertex producerVertex =
+                                consumedPartition.getProducer();
+                        final Set<SchedulingExecutionVertex> producerRegion =
+                                vertexToRegion.get(producerVertex);
+
+                        // check if it is the same as the producer region, if 
so skip the merge
+                        // this check can significantly reduce compute 
complexity in All-to-All
+                        // PIPELINED edge case
+                        if (producerRegion != null && currentRegion != 
producerRegion) {
+                            currentRegion =
+                                    mergeRegions(currentRegion, 
producerRegion, vertexToRegion);
+                        }
+                    } else {
+                        break;

Review comment:
       In this way, I think we can also extract a method like 
`getReconnectableResults` as a param of this method and have different 
implementations in `SchedulingPipelinedRegionComputeUtil` and 
`LogicalPipelinedRegionComputeUtil`.

##########
File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/jobgraph/topology/LogicalEdge.java
##########
@@ -0,0 +1,34 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.apache.flink.runtime.jobgraph.topology;
+
+import org.apache.flink.runtime.jobgraph.DistributionPattern;
+import org.apache.flink.runtime.jobgraph.IntermediateDataSet;
+import org.apache.flink.runtime.jobgraph.JobEdge;
+import org.apache.flink.runtime.jobgraph.JobVertex;
+
+/** Represents a vertex in {@link LogicalTopology}, i.e. {@link JobEdge}. */

Review comment:
       vertex -> edge

##########
File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/adapter/DefaultExecutionTopology.java
##########
@@ -243,13 +289,57 @@ private static DefaultExecutionVertex 
generateSchedulingExecutionVertex(
     }
 
     private static IndexedPipelinedRegions computePipelinedRegions(
-            Iterable<DefaultExecutionVertex> topologicallySortedVertexes,
+            Iterable<DefaultLogicalPipelinedRegion> logicalPipelinedRegions,
+            Function<DefaultLogicalPipelinedRegion, 
List<DefaultExecutionVertex>>
+                    sortedExecutionVerticesInPipelinedRegion,
+            Function<ExecutionVertexID, DefaultExecutionVertex> 
executionVertexRetriever,
             Function<IntermediateResultPartitionID, DefaultResultPartition>
                     resultPartitionRetriever) {
+
         long buildRegionsStartTime = System.nanoTime();
 
         Set<Set<SchedulingExecutionVertex>> rawPipelinedRegions =
-                
PipelinedRegionComputeUtil.computePipelinedRegions(topologicallySortedVertexes);
+                Collections.newSetFromMap(new IdentityHashMap<>());
+
+        // A SchedulingPipelinedRegion can be derived from only one 
LogicalPipelinedRegion.

Review comment:
       `only` sounds weird here. Maybe `just`?

##########
File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/adapter/DefaultExecutionTopology.java
##########
@@ -243,13 +289,57 @@ private static DefaultExecutionVertex 
generateSchedulingExecutionVertex(
     }
 
     private static IndexedPipelinedRegions computePipelinedRegions(
-            Iterable<DefaultExecutionVertex> topologicallySortedVertexes,
+            Iterable<DefaultLogicalPipelinedRegion> logicalPipelinedRegions,
+            Function<DefaultLogicalPipelinedRegion, 
List<DefaultExecutionVertex>>
+                    sortedExecutionVerticesInPipelinedRegion,
+            Function<ExecutionVertexID, DefaultExecutionVertex> 
executionVertexRetriever,
             Function<IntermediateResultPartitionID, DefaultResultPartition>
                     resultPartitionRetriever) {
+
         long buildRegionsStartTime = System.nanoTime();
 
         Set<Set<SchedulingExecutionVertex>> rawPipelinedRegions =
-                
PipelinedRegionComputeUtil.computePipelinedRegions(topologicallySortedVertexes);
+                Collections.newSetFromMap(new IdentityHashMap<>());
+
+        // A SchedulingPipelinedRegion can be derived from only one 
LogicalPipelinedRegion.
+        // Thus, we can traverse all LogicalPipelinedRegions and convert them 
into
+        // SchedulingPipelinedRegions one by one. The LogicalPipelinedRegions 
and
+        // SchedulingPipelinedRegions are both connected with inter-region 
blocking edges.
+        for (DefaultLogicalPipelinedRegion logicalPipelinedRegion : 
logicalPipelinedRegions) {
+
+            List<DefaultExecutionVertex> schedulingExecutionVertices =
+                    
sortedExecutionVerticesInPipelinedRegion.apply(logicalPipelinedRegion);
+
+            if (containsIntraRegionAllToAllEdge(logicalPipelinedRegion)) {
+                // For edges inside one LogicalPipelinedRegion, if there is 
any all-to-all edge, it
+                // could be under two circumstances:
+                //
+                // 1. Pipelined all-to-all edge:
+                //     Pipelined all-to-all edge will connect all vertices 
connected by the edge,
+                // and merges all the SchedulingPipelinedRegions derived from 
this
+                // LogicalPipelinedRegion into one sole region.

Review comment:
       >> Pipelined all-to-all edge will connect all vertices connected by the 
edge
   
   maybe "Pipelined all-to-all edge will connect all vertices pipelined. 
Therefore, all execution vertices from this LogicalPipelinedRegion should be in 
one SchedulingPipelinedRegion."?

##########
File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/failover/flip1/SchedulingPipelinedRegionComputeUtil.java
##########
@@ -0,0 +1,142 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.apache.flink.runtime.executiongraph.failover.flip1;
+
+import org.apache.flink.runtime.jobgraph.IntermediateResultPartitionID;
+import org.apache.flink.runtime.scheduler.strategy.ConsumedPartitionGroup;
+import org.apache.flink.runtime.scheduler.strategy.ConsumerVertexGroup;
+import org.apache.flink.runtime.scheduler.strategy.ExecutionVertexID;
+import org.apache.flink.runtime.scheduler.strategy.SchedulingExecutionVertex;
+import org.apache.flink.runtime.scheduler.strategy.SchedulingPipelinedRegion;
+import org.apache.flink.runtime.scheduler.strategy.SchedulingResultPartition;
+
+import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.IdentityHashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+import java.util.function.Function;
+
+import static 
org.apache.flink.runtime.executiongraph.failover.flip1.PipelinedRegionComputeUtil.mergeRegions;
+import static 
org.apache.flink.runtime.executiongraph.failover.flip1.PipelinedRegionComputeUtil.mergeRegionsOnCycles;
+
+/** Utils for computing {@link SchedulingPipelinedRegion}s. */
+public final class SchedulingPipelinedRegionComputeUtil {
+
+    public static Set<Set<SchedulingExecutionVertex>> computePipelinedRegions(
+            final Iterable<? extends SchedulingExecutionVertex> 
topologicallySortedVertexes,
+            final Function<ExecutionVertexID, ? extends 
SchedulingExecutionVertex>
+                    executionVertexRetriever,
+            final Function<IntermediateResultPartitionID, ? extends 
SchedulingResultPartition>
+                    resultPartitionRetriever) {
+
+        final Map<SchedulingExecutionVertex, Set<SchedulingExecutionVertex>> 
vertexToRegion =
+                buildRawRegions(topologicallySortedVertexes, 
resultPartitionRetriever);
+
+        return mergeRegionsOnCycles(
+                vertexToRegion,
+                (currentRegion, regionIndices) ->
+                        buildOutEdgesForRegion(
+                                currentRegion,
+                                regionIndices,
+                                vertexToRegion,
+                                executionVertexRetriever));
+    }
+
+    private static Map<SchedulingExecutionVertex, 
Set<SchedulingExecutionVertex>> buildRawRegions(
+            final Iterable<? extends SchedulingExecutionVertex> 
topologicallySortedVertexes,
+            final Function<IntermediateResultPartitionID, ? extends 
SchedulingResultPartition>
+                    resultPartitionRetriever) {
+
+        final Map<SchedulingExecutionVertex, Set<SchedulingExecutionVertex>> 
vertexToRegion =
+                new IdentityHashMap<>();
+
+        // iterate all the vertices which are topologically sorted
+        for (SchedulingExecutionVertex vertex : topologicallySortedVertexes) {
+            Set<SchedulingExecutionVertex> currentRegion = new HashSet<>();
+            currentRegion.add(vertex);
+            vertexToRegion.put(vertex, currentRegion);
+
+            for (ConsumedPartitionGroup consumedPartitionGroup :
+                    vertex.getConsumedPartitionGroups()) {
+                for (IntermediateResultPartitionID consumedPartitionId : 
consumedPartitionGroup) {
+                    SchedulingResultPartition consumedPartition =
+                            
resultPartitionRetriever.apply(consumedPartitionId);
+                    // Similar to the BLOCKING ResultPartitionType, each 
vertex connected through
+                    // PIPELINED_APPROXIMATE is also considered as a single 
region. This attribute
+                    // is called  "reconnectable". Reconnectable will be 
removed after FLINK-19895,
+                    // see also {@link  ResultPartitionType#isReconnectable}
+                    if (!consumedPartition.getResultType().isReconnectable()) {
+                        final SchedulingExecutionVertex producerVertex =
+                                consumedPartition.getProducer();
+                        final Set<SchedulingExecutionVertex> producerRegion =
+                                vertexToRegion.get(producerVertex);
+
+                        // check if it is the same as the producer region, if 
so skip the merge
+                        // this check can significantly reduce compute 
complexity in All-to-All
+                        // PIPELINED edge case
+                        if (producerRegion != null && currentRegion != 
producerRegion) {
+                            currentRegion =
+                                    mergeRegions(currentRegion, 
producerRegion, vertexToRegion);
+                        }
+                    } else {
+                        break;
+                    }
+                }
+            }
+        }
+
+        return vertexToRegion;
+    }
+
+    private static List<Integer> buildOutEdgesForRegion(
+            final Set<SchedulingExecutionVertex> currentRegion,
+            final Map<Set<SchedulingExecutionVertex>, Integer> regionIndices,
+            final Map<SchedulingExecutionVertex, 
Set<SchedulingExecutionVertex>> vertexToRegion,
+            final Function<ExecutionVertexID, ? extends 
SchedulingExecutionVertex>
+                    executionVertexRetriever) {
+
+        final List<Integer> currentRegionOutEdges = new ArrayList<>();
+        for (SchedulingExecutionVertex vertex : currentRegion) {
+            for (SchedulingResultPartition producedResult : 
vertex.getProducedResults()) {
+                if (producedResult.getResultType().isPipelined()) {
+                    continue;
+                }
+                for (ConsumerVertexGroup consumerVertexGroup :
+                        producedResult.getConsumerVertexGroups()) {
+                    for (ExecutionVertexID consumerVertexId : 
consumerVertexGroup) {
+                        SchedulingExecutionVertex consumerVertex =
+                                
executionVertexRetriever.apply(consumerVertexId);
+                        if (vertexToRegion.containsKey(consumerVertex)

Review comment:
       Let's add some documents for this check

##########
File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/failover/flip1/LogicalPipelinedRegionComputeUtil.java
##########
@@ -0,0 +1,113 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.apache.flink.runtime.executiongraph.failover.flip1;
+
+import org.apache.flink.runtime.jobgraph.topology.LogicalPipelinedRegion;
+import org.apache.flink.runtime.jobgraph.topology.LogicalResult;
+import org.apache.flink.runtime.jobgraph.topology.LogicalVertex;
+
+import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.IdentityHashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+
+import static 
org.apache.flink.runtime.executiongraph.failover.flip1.PipelinedRegionComputeUtil.mergeRegions;
+import static 
org.apache.flink.runtime.executiongraph.failover.flip1.PipelinedRegionComputeUtil.mergeRegionsOnCycles;
+
+/** Utils for computing {@link LogicalPipelinedRegion}s. */
+public final class LogicalPipelinedRegionComputeUtil {
+    public static Set<Set<LogicalVertex>> computePipelinedRegions(
+            final Iterable<? extends LogicalVertex> 
topologicallySortedVertexes) {
+        final Map<LogicalVertex, Set<LogicalVertex>> vertexToRegion =
+                buildRawRegions(topologicallySortedVertexes);
+        return mergeRegionsOnCycles(

Review comment:
       Cycles should never happen in logical topology so I think the it is not 
needed.

##########
File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/failover/flip1/SchedulingPipelinedRegionComputeUtil.java
##########
@@ -0,0 +1,142 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package org.apache.flink.runtime.executiongraph.failover.flip1;
+
+import org.apache.flink.runtime.jobgraph.IntermediateResultPartitionID;
+import org.apache.flink.runtime.scheduler.strategy.ConsumedPartitionGroup;
+import org.apache.flink.runtime.scheduler.strategy.ConsumerVertexGroup;
+import org.apache.flink.runtime.scheduler.strategy.ExecutionVertexID;
+import org.apache.flink.runtime.scheduler.strategy.SchedulingExecutionVertex;
+import org.apache.flink.runtime.scheduler.strategy.SchedulingPipelinedRegion;
+import org.apache.flink.runtime.scheduler.strategy.SchedulingResultPartition;
+
+import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.IdentityHashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+import java.util.function.Function;
+
+import static 
org.apache.flink.runtime.executiongraph.failover.flip1.PipelinedRegionComputeUtil.mergeRegions;
+import static 
org.apache.flink.runtime.executiongraph.failover.flip1.PipelinedRegionComputeUtil.mergeRegionsOnCycles;
+
+/** Utils for computing {@link SchedulingPipelinedRegion}s. */
+public final class SchedulingPipelinedRegionComputeUtil {
+
+    public static Set<Set<SchedulingExecutionVertex>> computePipelinedRegions(
+            final Iterable<? extends SchedulingExecutionVertex> 
topologicallySortedVertexes,
+            final Function<ExecutionVertexID, ? extends 
SchedulingExecutionVertex>
+                    executionVertexRetriever,
+            final Function<IntermediateResultPartitionID, ? extends 
SchedulingResultPartition>
+                    resultPartitionRetriever) {
+
+        final Map<SchedulingExecutionVertex, Set<SchedulingExecutionVertex>> 
vertexToRegion =
+                buildRawRegions(topologicallySortedVertexes, 
resultPartitionRetriever);
+
+        return mergeRegionsOnCycles(
+                vertexToRegion,
+                (currentRegion, regionIndices) ->
+                        buildOutEdgesForRegion(
+                                currentRegion,
+                                regionIndices,
+                                vertexToRegion,
+                                executionVertexRetriever));
+    }
+
+    private static Map<SchedulingExecutionVertex, 
Set<SchedulingExecutionVertex>> buildRawRegions(
+            final Iterable<? extends SchedulingExecutionVertex> 
topologicallySortedVertexes,
+            final Function<IntermediateResultPartitionID, ? extends 
SchedulingResultPartition>
+                    resultPartitionRetriever) {
+
+        final Map<SchedulingExecutionVertex, Set<SchedulingExecutionVertex>> 
vertexToRegion =
+                new IdentityHashMap<>();
+
+        // iterate all the vertices which are topologically sorted
+        for (SchedulingExecutionVertex vertex : topologicallySortedVertexes) {
+            Set<SchedulingExecutionVertex> currentRegion = new HashSet<>();
+            currentRegion.add(vertex);
+            vertexToRegion.put(vertex, currentRegion);
+
+            for (ConsumedPartitionGroup consumedPartitionGroup :
+                    vertex.getConsumedPartitionGroups()) {
+                for (IntermediateResultPartitionID consumedPartitionId : 
consumedPartitionGroup) {
+                    SchedulingResultPartition consumedPartition =
+                            
resultPartitionRetriever.apply(consumedPartitionId);
+                    // Similar to the BLOCKING ResultPartitionType, each 
vertex connected through
+                    // PIPELINED_APPROXIMATE is also considered as a single 
region. This attribute
+                    // is called  "reconnectable". Reconnectable will be 
removed after FLINK-19895,
+                    // see also {@link  ResultPartitionType#isReconnectable}
+                    if (!consumedPartition.getResultType().isReconnectable()) {
+                        final SchedulingExecutionVertex producerVertex =
+                                consumedPartition.getProducer();
+                        final Set<SchedulingExecutionVertex> producerRegion =
+                                vertexToRegion.get(producerVertex);
+
+                        // check if it is the same as the producer region, if 
so skip the merge
+                        // this check can significantly reduce compute 
complexity in All-to-All
+                        // PIPELINED edge case
+                        if (producerRegion != null && currentRegion != 
producerRegion) {
+                            currentRegion =
+                                    mergeRegions(currentRegion, 
producerRegion, vertexToRegion);
+                        }
+                    } else {
+                        break;

Review comment:
       Instead of doing a break here, I prefer to check one partition from the 
consumedPartitionGroup in ahead, and skip looping the group if the 
corresponding result is not reconnect-able. 

##########
File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/adapter/DefaultExecutionTopology.java
##########
@@ -243,13 +289,57 @@ private static DefaultExecutionVertex 
generateSchedulingExecutionVertex(
     }
 
     private static IndexedPipelinedRegions computePipelinedRegions(
-            Iterable<DefaultExecutionVertex> topologicallySortedVertexes,
+            Iterable<DefaultLogicalPipelinedRegion> logicalPipelinedRegions,
+            Function<DefaultLogicalPipelinedRegion, 
List<DefaultExecutionVertex>>
+                    sortedExecutionVerticesInPipelinedRegion,
+            Function<ExecutionVertexID, DefaultExecutionVertex> 
executionVertexRetriever,
             Function<IntermediateResultPartitionID, DefaultResultPartition>
                     resultPartitionRetriever) {
+
         long buildRegionsStartTime = System.nanoTime();
 
         Set<Set<SchedulingExecutionVertex>> rawPipelinedRegions =
-                
PipelinedRegionComputeUtil.computePipelinedRegions(topologicallySortedVertexes);
+                Collections.newSetFromMap(new IdentityHashMap<>());
+
+        // A SchedulingPipelinedRegion can be derived from only one 
LogicalPipelinedRegion.
+        // Thus, we can traverse all LogicalPipelinedRegions and convert them 
into
+        // SchedulingPipelinedRegions one by one. The LogicalPipelinedRegions 
and
+        // SchedulingPipelinedRegions are both connected with inter-region 
blocking edges.
+        for (DefaultLogicalPipelinedRegion logicalPipelinedRegion : 
logicalPipelinedRegions) {
+
+            List<DefaultExecutionVertex> schedulingExecutionVertices =
+                    
sortedExecutionVerticesInPipelinedRegion.apply(logicalPipelinedRegion);
+
+            if (containsIntraRegionAllToAllEdge(logicalPipelinedRegion)) {
+                // For edges inside one LogicalPipelinedRegion, if there is 
any all-to-all edge, it
+                // could be under two circumstances:
+                //
+                // 1. Pipelined all-to-all edge:
+                //     Pipelined all-to-all edge will connect all vertices 
connected by the edge,
+                // and merges all the SchedulingPipelinedRegions derived from 
this
+                // LogicalPipelinedRegion into one sole region.
+                //
+                // 2. Blocking all-to-all edge:
+                //     For intra-region blocking all-to-all edge, we must make 
sure all the vertices
+                // are inside one SchedulingPipelinedRegions, so that there 
will be no deadlock

Review comment:
       SchedulingPipelinedRegions -> SchedulingPipelinedRegion




-- 
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: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to