org.apache.iceberg.ManifestEntriesTable Maven / Gradle / Ivy
Show all versions of iceberg-core Show documentation
/*
* 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;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Sets;
import java.util.Collection;
import org.apache.iceberg.avro.Avro;
import org.apache.iceberg.expressions.Expression;
import org.apache.iceberg.expressions.ResidualEvaluator;
import org.apache.iceberg.io.CloseableIterable;
import org.apache.iceberg.types.TypeUtil;
/**
* A {@link Table} implementation that exposes a table's manifest entries as rows.
*
* WARNING: this table exposes internal details, like files that have been deleted. For a table of the live data files,
* use {@link DataFilesTable}.
*/
public class ManifestEntriesTable extends BaseMetadataTable {
private final TableOperations ops;
private final Table table;
public ManifestEntriesTable(TableOperations ops, Table table) {
this.ops = ops;
this.table = table;
}
@Override
Table table() {
return table;
}
@Override
String metadataTableName() {
return "entries";
}
@Override
public TableScan newScan() {
return new EntriesTableScan(ops, table, schema());
}
@Override
public Schema schema() {
Schema schema = ManifestEntry.getSchema(table.spec().partitionType());
if (table.spec().fields().size() < 1) {
// avoid returning an empty struct, which is not always supported. instead, drop the partition field (id 102)
return TypeUtil.selectNot(schema, Sets.newHashSet(102));
} else {
return schema;
}
}
@Override
public String location() {
return table.currentSnapshot().manifestListLocation();
}
private static class EntriesTableScan extends BaseTableScan {
private static final long TARGET_SPLIT_SIZE = 32 * 1024 * 1024; // 32 MB
EntriesTableScan(TableOperations ops, Table table, Schema schema) {
super(ops, table, schema);
}
private EntriesTableScan(
TableOperations ops, Table table, Long snapshotId, Schema schema, Expression rowFilter,
boolean caseSensitive, boolean colStats, Collection selectedColumns,
ImmutableMap options) {
super(ops, table, snapshotId, schema, rowFilter, caseSensitive, colStats, selectedColumns, options);
}
@Override
protected TableScan newRefinedScan(
TableOperations ops, Table table, Long snapshotId, Schema schema, Expression rowFilter,
boolean caseSensitive, boolean colStats, Collection selectedColumns,
ImmutableMap options) {
return new EntriesTableScan(
ops, table, snapshotId, schema, rowFilter, caseSensitive, colStats, selectedColumns, options);
}
@Override
protected long targetSplitSize(TableOperations ops) {
return TARGET_SPLIT_SIZE;
}
@Override
protected CloseableIterable planFiles(
TableOperations ops, Snapshot snapshot, Expression rowFilter, boolean caseSensitive, boolean colStats) {
CloseableIterable manifests = Avro
.read(ops.io().newInputFile(snapshot.manifestListLocation()))
.rename("manifest_file", GenericManifestFile.class.getName())
.rename("partitions", GenericPartitionFieldSummary.class.getName())
// 508 is the id used for the partition field, and r508 is the record name created for it in Avro schemas
.rename("r508", GenericPartitionFieldSummary.class.getName())
.project(ManifestFile.schema())
.reuseContainers(false)
.build();
String schemaString = SchemaParser.toJson(schema());
String specString = PartitionSpecParser.toJson(PartitionSpec.unpartitioned());
return CloseableIterable.transform(manifests, manifest -> new BaseFileScanTask(
DataFiles.fromManifest(manifest), schemaString, specString, ResidualEvaluator.unpartitioned(rowFilter)));
}
}
}