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

org.apache.flink.runtime.clusterframework.types.SlotProfile Maven / Gradle / Ivy

There is a newer version: 1.19.0
Show newest version
/*
 * 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.clusterframework.types;

import org.apache.flink.runtime.jobmaster.SlotContext;
import org.apache.flink.runtime.jobmaster.slotpool.PreviousAllocationSlotSelectionStrategy;
import org.apache.flink.runtime.taskmanager.TaskManagerLocation;

import java.util.Collection;
import java.util.Set;

import static org.apache.flink.util.Preconditions.checkNotNull;

/**
 * A slot profile describes the profile of a slot into which a task wants to be scheduled. The
 * profile contains attributes such as resource or locality constraints, some of which may be hard
 * or soft. It also contains the information of resources for the physical slot to host this task
 * slot, which can be used to allocate a physical slot when no physical slot is available for this
 * task slot. A matcher can be generated to filter out candidate slots by matching their {@link
 * SlotContext} against the slot profile and, potentially, further requirements.
 */
public class SlotProfile {
    /** This specifies the desired resource profile for the task slot. */
    private final ResourceProfile taskResourceProfile;

    /** This specifies the desired resource profile for the physical slot to host this task slot. */
    private final ResourceProfile physicalSlotResourceProfile;

    /** This specifies the preferred locations for the slot. */
    private final Collection preferredLocations;

    /** This contains desired allocation ids of the slot. */
    private final Collection preferredAllocations;

    /** This contains all reserved allocation ids from the whole execution graph. */
    private final Set reservedAllocations;

    private SlotProfile(
            final ResourceProfile taskResourceProfile,
            final ResourceProfile physicalSlotResourceProfile,
            final Collection preferredLocations,
            final Collection preferredAllocations,
            final Set reservedAllocations) {

        this.taskResourceProfile = checkNotNull(taskResourceProfile);
        this.physicalSlotResourceProfile = checkNotNull(physicalSlotResourceProfile);
        this.preferredLocations = checkNotNull(preferredLocations);
        this.preferredAllocations = checkNotNull(preferredAllocations);
        this.reservedAllocations = checkNotNull(reservedAllocations);
    }

    /** Returns the desired resource profile for the task slot. */
    public ResourceProfile getTaskResourceProfile() {
        return taskResourceProfile;
    }

    /** Returns the desired resource profile for the physical slot to host this task slot. */
    public ResourceProfile getPhysicalSlotResourceProfile() {
        return physicalSlotResourceProfile;
    }

    /** Returns the preferred locations for the slot. */
    public Collection getPreferredLocations() {
        return preferredLocations;
    }

    /** Returns the desired allocation ids for the slot. */
    public Collection getPreferredAllocations() {
        return preferredAllocations;
    }

    /**
     * Returns a set of all reserved allocation ids from the execution graph. It will used by {@link
     * PreviousAllocationSlotSelectionStrategy} to support local recovery. In this case, a vertex
     * cannot take an reserved allocation unless it exactly prefers that allocation.
     *
     * 

This is optional and can be empty if unused. */ public Set getReservedAllocations() { return reservedAllocations; } /** * Returns a slot profile for the given resource profile, prior allocations and all prior * allocation ids from the whole execution graph. * * @param taskResourceProfile specifying the required resources for the task slot * @param physicalSlotResourceProfile specifying the required resources for the physical slot to * host this task slot * @param preferredLocations specifying the preferred locations * @param priorAllocations specifying the prior allocations * @param reservedAllocations specifying all reserved allocations * @return Slot profile with all the given information */ public static SlotProfile priorAllocation( final ResourceProfile taskResourceProfile, final ResourceProfile physicalSlotResourceProfile, final Collection preferredLocations, final Collection priorAllocations, final Set reservedAllocations) { return new SlotProfile( taskResourceProfile, physicalSlotResourceProfile, preferredLocations, priorAllocations, reservedAllocations); } @Override public String toString() { return "SlotProfile{" + "taskResourceProfile=" + taskResourceProfile + ", physicalSlotResourceProfile=" + physicalSlotResourceProfile + ", preferredLocations=" + preferredLocations + ", preferredAllocations=" + preferredAllocations + ", reservedAllocations=" + reservedAllocations + '}'; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy