org.apache.flink.runtime.util.SlotSelectionStrategyUtils 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.util;
import org.apache.flink.configuration.Configuration;
import org.apache.flink.configuration.StateRecoveryOptions;
import org.apache.flink.configuration.TaskManagerOptions;
import org.apache.flink.runtime.jobgraph.JobType;
import org.apache.flink.runtime.jobmaster.slotpool.LocationPreferenceSlotSelectionStrategy;
import org.apache.flink.runtime.jobmaster.slotpool.PreviousAllocationSlotSelectionStrategy;
import org.apache.flink.runtime.jobmaster.slotpool.SlotSelectionStrategy;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import static org.apache.flink.configuration.TaskManagerOptions.TaskManagerLoadBalanceMode;
/** Utility class for selecting {@link SlotSelectionStrategy}. */
public class SlotSelectionStrategyUtils {
private static final Logger LOG = LoggerFactory.getLogger(SlotSelectionStrategyUtils.class);
public static SlotSelectionStrategy selectSlotSelectionStrategy(
final JobType jobType, final Configuration configuration) {
TaskManagerLoadBalanceMode taskManagerLoadBalanceMode =
configuration.get(TaskManagerOptions.TASK_MANAGER_LOAD_BALANCE_MODE);
final SlotSelectionStrategy locationPreferenceSlotSelectionStrategy;
locationPreferenceSlotSelectionStrategy =
taskManagerLoadBalanceMode == TaskManagerLoadBalanceMode.SLOTS
? LocationPreferenceSlotSelectionStrategy.createEvenlySpreadOut()
: LocationPreferenceSlotSelectionStrategy.createDefault();
final boolean isLocalRecoveryEnabled =
configuration.get(StateRecoveryOptions.LOCAL_RECOVERY);
if (isLocalRecoveryEnabled) {
if (jobType == JobType.STREAMING) {
return PreviousAllocationSlotSelectionStrategy.create(
locationPreferenceSlotSelectionStrategy);
} else {
LOG.warn(
"Batch job does not support local recovery. Falling back to use "
+ locationPreferenceSlotSelectionStrategy.getClass());
return locationPreferenceSlotSelectionStrategy;
}
} else {
return locationPreferenceSlotSelectionStrategy;
}
}
/** Private default constructor to avoid being instantiated. */
private SlotSelectionStrategyUtils() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy