io.trino.execution.scheduler.FixedCountScheduler Maven / Gradle / Ivy
/*
* Licensed 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 io.trino.execution.scheduler;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.collect.ImmutableMultimap;
import io.trino.execution.RemoteTask;
import io.trino.metadata.InternalNode;
import java.util.List;
import java.util.Optional;
import java.util.stream.IntStream;
import static com.google.common.collect.ImmutableList.toImmutableList;
import static java.util.Objects.requireNonNull;
public class FixedCountScheduler
implements StageScheduler
{
public interface TaskScheduler
{
Optional scheduleTask(InternalNode node, int partition);
}
private final TaskScheduler taskScheduler;
private final List partitionToNode;
public FixedCountScheduler(StageExecution stageExecution, List partitionToNode)
{
requireNonNull(stageExecution, "stage is null");
this.taskScheduler = (node, partition) -> stageExecution.scheduleTask(node, partition, ImmutableMultimap.of());
this.partitionToNode = requireNonNull(partitionToNode, "partitionToNode is null");
}
@VisibleForTesting
public FixedCountScheduler(TaskScheduler taskScheduler, List partitionToNode)
{
this.taskScheduler = requireNonNull(taskScheduler, "taskScheduler is null");
this.partitionToNode = requireNonNull(partitionToNode, "partitionToNode is null");
}
@Override
public ScheduleResult schedule()
{
List newTasks = IntStream.range(0, partitionToNode.size())
.mapToObj(partition -> taskScheduler.scheduleTask(partitionToNode.get(partition), partition))
.filter(Optional::isPresent)
.map(Optional::get)
.collect(toImmutableList());
return new ScheduleResult(true, newTasks, 0);
}
}