org.apache.iceberg.flink.source.reader.MetaDataReaderFunction 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.iceberg.flink.source.reader;
import org.apache.flink.annotation.Internal;
import org.apache.flink.configuration.ReadableConfig;
import org.apache.flink.table.data.RowData;
import org.apache.iceberg.Schema;
import org.apache.iceberg.encryption.EncryptionManager;
import org.apache.iceberg.flink.FlinkSchemaUtil;
import org.apache.iceberg.flink.source.DataIterator;
import org.apache.iceberg.flink.source.DataTaskReader;
import org.apache.iceberg.flink.source.split.IcebergSourceSplit;
import org.apache.iceberg.io.FileIO;
import org.apache.iceberg.relocated.com.google.common.base.Preconditions;
/** Reading metadata tables (like snapshots, manifests, etc.) */
@Internal
public class MetaDataReaderFunction extends DataIteratorReaderFunction {
private final Schema readSchema;
private final FileIO io;
private final EncryptionManager encryption;
public MetaDataReaderFunction(
ReadableConfig config,
Schema tableSchema,
Schema projectedSchema,
FileIO io,
EncryptionManager encryption) {
super(
new ArrayPoolDataIteratorBatcher<>(
config,
new RowDataRecordFactory(
FlinkSchemaUtil.convert(readSchema(tableSchema, projectedSchema)))));
this.readSchema = readSchema(tableSchema, projectedSchema);
this.io = io;
this.encryption = encryption;
}
@Override
public DataIterator createDataIterator(IcebergSourceSplit split) {
return new DataIterator<>(new DataTaskReader(readSchema), split.task(), io, encryption);
}
private static Schema readSchema(Schema tableSchema, Schema projectedSchema) {
Preconditions.checkNotNull(tableSchema, "Table schema can't be null");
return projectedSchema == null ? tableSchema : projectedSchema;
}
}