org.apache.flink.runtime.jobmaster.slotpool.SlotSelectionStrategy Maven / Gradle / Ivy
The 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.jobmaster.slotpool;
import org.apache.flink.runtime.clusterframework.types.SlotProfile;
import org.apache.flink.runtime.jobmanager.scheduler.Locality;
import org.apache.flink.runtime.jobmaster.SlotInfo;
import javax.annotation.Nonnull;
import java.util.Optional;
/** Interface for slot selection strategies. */
public interface SlotSelectionStrategy {
/**
* Selects the best {@link SlotInfo} w.r.t. a certain selection criterion from the provided list
* of available slots and considering the given {@link SlotProfile} that describes the
* requirements.
*
* @param freeSlotTracker a list of the available slots together with their remaining resources
* to select from.
* @param slotProfile a slot profile, describing requirements for the slot selection.
* @return the selected slot info with the corresponding locality hint.
*/
Optional selectBestSlotForProfile(
@Nonnull FreeSlotTracker freeSlotTracker, @Nonnull SlotProfile slotProfile);
/** This class is a value type that combines a {@link SlotInfo} with a {@link Locality} hint. */
final class SlotInfoAndLocality {
@Nonnull private final SlotInfo slotInfo;
@Nonnull private final Locality locality;
private SlotInfoAndLocality(@Nonnull SlotInfo slotInfo, @Nonnull Locality locality) {
this.slotInfo = slotInfo;
this.locality = locality;
}
@Nonnull
public SlotInfo getSlotInfo() {
return slotInfo;
}
@Nonnull
public Locality getLocality() {
return locality;
}
public static SlotInfoAndLocality of(
@Nonnull SlotInfo slotInfo, @Nonnull Locality locality) {
return new SlotInfoAndLocality(slotInfo, locality);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy