com.facebook.presto.iceberg.IcebergUpdateablePageSource 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;
import com.facebook.presto.common.Page;
import com.facebook.presto.common.block.Block;
import com.facebook.presto.common.block.RunLengthEncodedBlock;
import com.facebook.presto.common.type.Type;
import com.facebook.presto.hive.HivePartitionKey;
import com.facebook.presto.iceberg.delete.IcebergDeletePageSink;
import com.facebook.presto.iceberg.delete.RowPredicate;
import com.facebook.presto.spi.ConnectorPageSource;
import com.facebook.presto.spi.PrestoException;
import com.facebook.presto.spi.UpdatablePageSource;
import com.google.common.collect.ImmutableList;
import io.airlift.slice.Slice;
import java.io.IOException;
import java.io.UncheckedIOException;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.concurrent.CompletableFuture;
import java.util.function.Supplier;
import static com.facebook.presto.common.Utils.nativeValueToBlock;
import static com.facebook.presto.hive.BaseHiveColumnHandle.ColumnType.PARTITION_KEY;
import static com.facebook.presto.iceberg.IcebergErrorCode.ICEBERG_BAD_DATA;
import static com.facebook.presto.iceberg.IcebergUtil.deserializePartitionValue;
import static com.google.common.base.Throwables.throwIfInstanceOf;
import static java.util.Objects.requireNonNull;
public class IcebergUpdateablePageSource
implements UpdatablePageSource
{
private final Block[] prefilledBlocks;
private final int[] delegateIndexes;
private final ConnectorPageSource delegate;
private final Supplier deleteSinkSupplier;
private IcebergDeletePageSink deleteSink;
private final Supplier> deletePredicate;
public IcebergUpdateablePageSource(
List columns,
Map metadataValues,
Map partitionKeys,
ConnectorPageSource delegate,
Supplier deleteSinkSupplier,
Supplier> deletePredicate)
{
int size = requireNonNull(columns, "columns is null").size();
requireNonNull(partitionKeys, "partitionKeys is null");
this.delegate = requireNonNull(delegate, "delegate is null");
this.deleteSinkSupplier = deleteSinkSupplier;
this.deletePredicate = requireNonNull(deletePredicate, "deletePredicate is null");
prefilledBlocks = new Block[size];
delegateIndexes = new int[size];
int outputIndex = 0;
int delegateIndex = 0;
for (IcebergColumnHandle column : columns) {
if (partitionKeys.containsKey(column.getId())) {
HivePartitionKey icebergPartition = partitionKeys.get(column.getId());
Type type = column.getType();
Object prefilledValue = deserializePartitionValue(type, icebergPartition.getValue().orElse(null), column.getName());
prefilledBlocks[outputIndex] = nativeValueToBlock(type, prefilledValue);
delegateIndexes[outputIndex] = -1;
}
else if (column.getColumnType() == PARTITION_KEY) {
// Partition key with no value. This can happen after partition evolution
Type type = column.getType();
prefilledBlocks[outputIndex] = nativeValueToBlock(type, null);
delegateIndexes[outputIndex] = -1;
}
else if (IcebergMetadataColumn.isMetadataColumnId(column.getId())) {
prefilledBlocks[outputIndex] = nativeValueToBlock(column.getType(), metadataValues.get(column.getColumnIdentity().getId()));
delegateIndexes[outputIndex] = -1;
}
else {
delegateIndexes[outputIndex] = delegateIndex;
delegateIndex++;
}
outputIndex++;
}
}
@Override
public long getCompletedBytes()
{
return delegate.getCompletedBytes();
}
@Override
public long getCompletedPositions()
{
return delegate.getCompletedPositions();
}
@Override
public long getReadTimeNanos()
{
return delegate.getReadTimeNanos();
}
@Override
public boolean isFinished()
{
return delegate.isFinished();
}
@Override
public Page getNextPage()
{
try {
Page dataPage = delegate.getNextPage();
if (dataPage == null) {
return null;
}
Optional deleteFilterPredicate = deletePredicate.get();
if (deleteFilterPredicate.isPresent()) {
dataPage = deleteFilterPredicate.get().filterPage(dataPage);
}
int batchSize = dataPage.getPositionCount();
Block[] blocks = new Block[prefilledBlocks.length];
for (int i = 0; i < prefilledBlocks.length; i++) {
if (prefilledBlocks[i] != null) {
blocks[i] = new RunLengthEncodedBlock(prefilledBlocks[i], batchSize);
}
else {
blocks[i] = dataPage.getBlock(delegateIndexes[i]);
}
}
return new Page(batchSize, blocks);
}
catch (RuntimeException e) {
closeWithSuppression(e);
throwIfInstanceOf(e, PrestoException.class);
throw new PrestoException(ICEBERG_BAD_DATA, e);
}
}
@Override
public void deleteRows(Block rowIds)
{
if (deleteSink == null) {
deleteSink = deleteSinkSupplier.get();
}
deleteSink.appendPage(new Page(rowIds));
}
@Override
public CompletableFuture> finish()
{
if (deleteSink == null) {
return CompletableFuture.completedFuture(ImmutableList.of());
}
return deleteSink.finish();
}
@Override
public void abort()
{
if (deleteSink != null) {
deleteSink.abort();
}
}
@Override
public void close()
{
try {
delegate.close();
}
catch (IOException e) {
throw new UncheckedIOException(e);
}
}
@Override
public String toString()
{
return delegate.toString();
}
@Override
public long getSystemMemoryUsage()
{
long totalMemUsage = delegate.getSystemMemoryUsage();
if (deleteSink != null) {
totalMemUsage += deleteSink.getSystemMemoryUsage();
}
return totalMemUsage;
}
protected void closeWithSuppression(Throwable throwable)
{
requireNonNull(throwable, "throwable is null");
try {
close();
}
catch (RuntimeException e) {
// Self-suppression not permitted
if (throwable != e) {
throwable.addSuppressed(e);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy