com.netease.arctic.trace.ArcticAppendFiles Maven / Gradle / Ivy
The newest version!
/*
* 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 com.netease.arctic.trace;
import com.netease.arctic.AmsClient;
import com.netease.arctic.op.ArcticUpdate;
import com.netease.arctic.table.ArcticTable;
import com.netease.arctic.table.UnkeyedTable;
import com.netease.arctic.shade.org.apache.iceberg.AppendFiles;
import com.netease.arctic.shade.org.apache.iceberg.DataFile;
import com.netease.arctic.shade.org.apache.iceberg.ManifestFile;
import com.netease.arctic.shade.org.apache.iceberg.Snapshot;
import com.netease.arctic.shade.org.apache.iceberg.Table;
import com.netease.arctic.shade.org.apache.iceberg.Transaction;
import java.util.function.Consumer;
/**
* Implementation of {@link AppendFiles} for arctic table, adding tracing and watermark generating logics.
*/
public class ArcticAppendFiles extends ArcticUpdate implements AppendFiles {
private final AppendFiles appendFiles;
public static Builder buildFor(ArcticTable table, boolean fastAppend) {
return new Builder(table, fastAppend);
}
private ArcticAppendFiles(ArcticTable arcticTable, AppendFiles appendFiles, TableTracer tracer) {
super(arcticTable, tracer);
this.appendFiles = appendFiles;
}
private ArcticAppendFiles(ArcticTable arcticTable, AppendFiles appendFiles, TableTracer tracer,
Transaction transaction, boolean autoCommitTransaction) {
super(arcticTable, tracer, transaction, autoCommitTransaction);
this.appendFiles = appendFiles;
}
@Override
public AppendFiles appendFile(DataFile file) {
appendFiles.appendFile(file);
addIcebergDataFile(file);
return this;
}
@Override
public AppendFiles appendManifest(ManifestFile file) {
//TODO read added files from manifest file
appendFiles.appendManifest(file);
return this;
}
@Override
public AppendFiles set(String property, String value) {
appendFiles.set(property, value);
tracer().ifPresent(tracer -> tracer.setSnapshotSummary(property, value));
return this;
}
@Override
public AppendFiles deleteWith(Consumer deleteFunc) {
appendFiles.deleteWith(deleteFunc);
return this;
}
@Override
public AppendFiles stageOnly() {
appendFiles.stageOnly();
return this;
}
@Override
public Snapshot apply() {
return appendFiles.apply();
}
@Override
public void doCommit() {
appendFiles.commit();
}
@Override
public Object updateEvent() {
return appendFiles.updateEvent();
}
public static class Builder extends ArcticUpdate.Builder {
private boolean fastAppend;
private Builder(ArcticTable table, boolean fastAppend) {
super(table);
generateWatermark();
this.fastAppend = fastAppend;
}
@Override
protected ArcticAppendFiles updateWithWatermark(
TableTracer tableTracer, Transaction transaction, boolean autoCommitTransaction) {
return new ArcticAppendFiles(table, newAppendFiles(transaction), tableTracer, transaction, autoCommitTransaction);
}
@Override
protected ArcticAppendFiles updateWithoutWatermark(TableTracer tableTracer, Table tableStore) {
return new ArcticAppendFiles(table, newAppendFiles(tableStore), tableTracer);
}
@Override
public ArcticUpdate.Builder traceTable(AmsClient client, UnkeyedTable traceTable) {
if (client != null) {
TableTracer tracer = new AmsTableTracer(traceTable, TraceOperations.APPEND, client, true);
traceTable(tracer);
}
return this;
}
private AppendFiles newAppendFiles(Transaction transaction) {
if (fastAppend) {
return transaction.newFastAppend();
} else {
return transaction.newAppend();
}
}
private AppendFiles newAppendFiles(Table tableStore) {
if (fastAppend) {
return tableStore.newFastAppend();
} else {
return tableStore.newAppend();
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy