org.apache.paimon.flink.source.assigners.SplitAssigner 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.paimon.flink.source.assigners;
import org.apache.paimon.flink.source.FileStoreSourceSplit;
import javax.annotation.Nullable;
import java.util.Collection;
import java.util.List;
import java.util.Optional;
/**
* The {@code SplitAssigner} is responsible for deciding what splits should be processed next by
* which node. It determines split processing order and locality.
*/
public interface SplitAssigner {
/**
* Gets the next split.
*
* When this method returns an empty {@code Optional}, then the set of splits is assumed to
* be done and the source will finish once the readers finished their current splits.
*/
List getNext(int subtask, @Nullable String hostname);
/** Add one split of a specified subtask to the assigner. */
void addSplit(int suggestedTask, FileStoreSourceSplit splits);
/**
* Adds a set of splits to this assigner. This happens for example when some split processing
* failed and the splits need to be re-added, or when new splits got discovered.
*/
void addSplitsBack(int subtask, List splits);
/** Gets the remaining splits that this assigner has pending. */
Collection remainingSplits();
/** Gets the snapshot id of the next split. */
Optional getNextSnapshotId(int subtask);
/**
* Gets the current number of remaining splits. This method should be guaranteed to be
* thread-safe.
*/
int numberOfRemainingSplits();
}