com.facebook.presto.iceberg.equalitydeletes.EqualityDeletesSplitSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of presto-iceberg Show documentation
Show all versions of presto-iceberg Show documentation
Presto - Iceberg Connector
The newest version!
/*
* 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 com.facebook.presto.iceberg.equalitydeletes;
import com.facebook.presto.iceberg.IcebergSplit;
import com.facebook.presto.iceberg.IcebergUtil;
import com.facebook.presto.iceberg.PartitionData;
import com.facebook.presto.spi.ConnectorSession;
import com.facebook.presto.spi.ConnectorSplit;
import com.facebook.presto.spi.ConnectorSplitSource;
import com.facebook.presto.spi.PrestoException;
import com.facebook.presto.spi.SplitWeight;
import com.facebook.presto.spi.connector.ConnectorPartitionHandle;
import com.google.common.collect.ImmutableList;
import org.apache.iceberg.DeleteFile;
import org.apache.iceberg.PartitionSpec;
import org.apache.iceberg.PartitionSpecParser;
import org.apache.iceberg.Table;
import org.apache.iceberg.io.CloseableIterable;
import org.apache.iceberg.io.CloseableIterator;
import java.io.IOException;
import java.util.Iterator;
import java.util.Map;
import java.util.Optional;
import java.util.concurrent.CompletableFuture;
import static com.facebook.presto.hive.HiveCommonSessionProperties.getNodeSelectionStrategy;
import static com.facebook.presto.iceberg.FileContent.EQUALITY_DELETES;
import static com.facebook.presto.iceberg.FileContent.fromIcebergFileContent;
import static com.facebook.presto.iceberg.FileFormat.fromIcebergFileFormat;
import static com.facebook.presto.iceberg.IcebergErrorCode.ICEBERG_FILESYSTEM_ERROR;
import static com.facebook.presto.iceberg.IcebergUtil.getPartitionKeys;
import static com.facebook.presto.iceberg.IcebergUtil.partitionDataFromStructLike;
import static com.google.common.collect.Iterators.limit;
import static java.util.Objects.requireNonNull;
import static java.util.concurrent.CompletableFuture.completedFuture;
public class EqualityDeletesSplitSource
implements ConnectorSplitSource
{
private final ConnectorSession session;
private final Map specById;
private CloseableIterator deleteFiles;
public EqualityDeletesSplitSource(
ConnectorSession session,
Table table,
CloseableIterable deleteFiles)
{
this.session = requireNonNull(session, "session is null");
requireNonNull(table, "table is null");
requireNonNull(deleteFiles, "deleteFiles is null");
this.specById = table.specs();
this.deleteFiles = CloseableIterable.filter(deleteFiles, deleteFile -> fromIcebergFileContent(deleteFile.content()) == EQUALITY_DELETES).iterator();
}
@Override
public boolean isFinished()
{
return !deleteFiles.hasNext();
}
@Override
public CompletableFuture getNextBatch(ConnectorPartitionHandle partitionHandle, int maxSize)
{
ImmutableList.Builder splits = new ImmutableList.Builder<>();
Iterator iterator = limit(deleteFiles, maxSize);
iterator.forEachRemaining(manifestReader -> {
splits.add(toIcebergSplit(manifestReader));
});
return completedFuture(new ConnectorSplitBatch(splits.build(), isFinished()));
}
@Override
public void close()
{
try {
deleteFiles.close();
// TODO: remove this after org.apache.iceberg.io.CloseableIterator'withClose
// correct release resources holds by iterator.
// (and make it final)
deleteFiles = CloseableIterator.empty();
}
catch (IOException e) {
throw new PrestoException(ICEBERG_FILESYSTEM_ERROR, e);
}
}
private ConnectorSplit toIcebergSplit(DeleteFile manifesReader)
{
return splitFromDeleteFile(manifesReader);
}
private IcebergSplit splitFromDeleteFile(DeleteFile deleteFile)
{
PartitionSpec spec = specById.get(deleteFile.specId());
Optional partitionData = partitionDataFromStructLike(spec, deleteFile.partition());
return new IcebergSplit(
deleteFile.path().toString(),
0,
deleteFile.fileSizeInBytes(),
fromIcebergFileFormat(deleteFile.format()),
ImmutableList.of(),
getPartitionKeys(specById.get(deleteFile.specId()), deleteFile.partition()),
PartitionSpecParser.toJson(spec),
partitionData.map(PartitionData::toJson),
getNodeSelectionStrategy(session),
SplitWeight.standard(),
ImmutableList.of(),
Optional.empty(),
IcebergUtil.getDataSequenceNumber(deleteFile));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy