org.apache.iceberg.flink.source.reader.IcebergSourceReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iceberg-flink-1.18 Show documentation
Show all versions of iceberg-flink-1.18 Show documentation
A table format for huge analytic datasets
/*
* 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.iceberg.flink.source.reader;
import java.util.Collection;
import java.util.Collections;
import java.util.Map;
import org.apache.flink.annotation.Internal;
import org.apache.flink.api.connector.source.SourceReaderContext;
import org.apache.flink.connector.base.source.reader.SingleThreadMultiplexSourceReaderBase;
import org.apache.iceberg.flink.source.split.IcebergSourceSplit;
import org.apache.iceberg.flink.source.split.SerializableComparator;
import org.apache.iceberg.flink.source.split.SplitRequestEvent;
import org.apache.iceberg.relocated.com.google.common.collect.Lists;
@Internal
public class IcebergSourceReader
extends SingleThreadMultiplexSourceReaderBase<
RecordAndPosition, T, IcebergSourceSplit, IcebergSourceSplit> {
public IcebergSourceReader(
SerializableRecordEmitter emitter,
IcebergSourceReaderMetrics metrics,
ReaderFunction readerFunction,
SerializableComparator splitComparator,
SourceReaderContext context) {
super(
() -> new IcebergSourceSplitReader<>(metrics, readerFunction, splitComparator, context),
emitter,
context.getConfiguration(),
context);
}
@Override
public void start() {
// We request a split only if we did not get splits during the checkpoint restore.
// Otherwise, reader restarts will keep requesting more and more splits.
if (getNumberOfCurrentlyAssignedSplits() == 0) {
requestSplit(Collections.emptyList());
}
}
@Override
protected void onSplitFinished(Map finishedSplitIds) {
requestSplit(Lists.newArrayList(finishedSplitIds.keySet()));
}
@Override
protected IcebergSourceSplit initializedState(IcebergSourceSplit split) {
return split;
}
@Override
protected IcebergSourceSplit toSplitType(String splitId, IcebergSourceSplit splitState) {
return splitState;
}
private void requestSplit(Collection finishedSplitIds) {
context.sendSourceEventToCoordinator(new SplitRequestEvent(finishedSplitIds));
}
}