All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flink.runtime.scheduler.strategy.SchedulingStrategyUtils Maven / Gradle / Ivy

/*
 * 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.scheduler.strategy;

import org.apache.flink.runtime.scheduler.DeploymentOption;
import org.apache.flink.runtime.scheduler.ExecutionVertexDeploymentOption;
import org.apache.flink.util.IterableUtils;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Set;
import java.util.function.Function;
import java.util.stream.Collectors;

/** Utils for {@link SchedulingStrategy}. */
class SchedulingStrategyUtils {

    static Set getAllVertexIdsFromTopology(final SchedulingTopology topology) {
        return IterableUtils.toStream(topology.getVertices())
                .map(SchedulingExecutionVertex::getId)
                .collect(Collectors.toSet());
    }

    static Set getVerticesFromIds(
            final SchedulingTopology topology, final Set vertexIds) {

        return vertexIds.stream().map(topology::getVertex).collect(Collectors.toSet());
    }

    static List
            createExecutionVertexDeploymentOptionsInTopologicalOrder(
                    final SchedulingTopology topology,
                    final Set verticesToDeploy,
                    final Function deploymentOptionRetriever) {

        return IterableUtils.toStream(topology.getVertices())
                .map(SchedulingExecutionVertex::getId)
                .filter(verticesToDeploy::contains)
                .map(
                        executionVertexID ->
                                new ExecutionVertexDeploymentOption(
                                        executionVertexID,
                                        deploymentOptionRetriever.apply(executionVertexID)))
                .collect(Collectors.toList());
    }

    static List createExecutionVertexDeploymentOptions(
            final Collection verticesToDeploy,
            final Function deploymentOptionRetriever) {

        final List deploymentOptions =
                new ArrayList<>(verticesToDeploy.size());
        for (ExecutionVertexID executionVertexId : verticesToDeploy) {
            final ExecutionVertexDeploymentOption deploymentOption =
                    new ExecutionVertexDeploymentOption(
                            executionVertexId, deploymentOptionRetriever.apply(executionVertexId));
            deploymentOptions.add(deploymentOption);
        }
        return deploymentOptions;
    }

    static List sortPipelinedRegionsInTopologicalOrder(
            final SchedulingTopology topology, final Set regions) {

        // Avoid the O(V) (V is the number of vertices in the topology) sorting
        // complexity if the given set of regions is small enough
        if (regions.size() == 0) {
            return Collections.emptyList();
        } else if (regions.size() == 1) {
            return Collections.singletonList(regions.iterator().next());
        }

        return IterableUtils.toStream(topology.getVertices())
                .map(SchedulingExecutionVertex::getId)
                .map(topology::getPipelinedRegionOfVertex)
                .filter(regions::contains)
                .distinct()
                .collect(Collectors.toList());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy