org.apache.paimon.flink.lookup.PrimaryKeyLookupTable 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.paimon.flink.lookup;
import org.apache.paimon.data.InternalRow;
import org.apache.paimon.data.serializer.InternalSerializers;
import org.apache.paimon.lookup.BulkLoader;
import org.apache.paimon.lookup.RocksDBValueState;
import org.apache.paimon.predicate.Predicate;
import org.apache.paimon.table.FileStoreTable;
import org.apache.paimon.types.RowKind;
import org.apache.paimon.utils.KeyProjectedRow;
import org.apache.paimon.utils.ProjectedRow;
import org.apache.paimon.utils.TypeUtils;
import javax.annotation.Nullable;
import java.io.IOException;
import java.util.Collections;
import java.util.List;
/** A {@link LookupTable} for primary key table. */
public class PrimaryKeyLookupTable extends FullCacheLookupTable {
protected final long lruCacheSize;
protected final KeyProjectedRow primaryKeyRow;
@Nullable private final ProjectedRow keyRearrange;
protected RocksDBValueState tableState;
public PrimaryKeyLookupTable(Context context, long lruCacheSize, List joinKey) {
super(context);
this.lruCacheSize = lruCacheSize;
List fieldNames = projectedType.getFieldNames();
FileStoreTable table = context.table;
int[] primaryKeyMapping =
table.primaryKeys().stream().mapToInt(fieldNames::indexOf).toArray();
this.primaryKeyRow = new KeyProjectedRow(primaryKeyMapping);
ProjectedRow keyRearrange = null;
if (!table.primaryKeys().equals(joinKey)) {
keyRearrange =
ProjectedRow.from(
table.primaryKeys().stream()
.map(joinKey::indexOf)
.mapToInt(value -> value)
.toArray());
}
this.keyRearrange = keyRearrange;
}
@Override
public void open() throws Exception {
openStateFactory();
createTableState();
bootstrap();
}
protected void createTableState() throws IOException {
this.tableState =
stateFactory.valueState(
"table",
InternalSerializers.create(
TypeUtils.project(projectedType, primaryKeyRow.indexMapping())),
InternalSerializers.create(projectedType),
lruCacheSize);
}
@Override
public List innerGet(InternalRow key) throws IOException {
if (keyRearrange != null) {
key = keyRearrange.replaceRow(key);
}
InternalRow value = tableState.get(key);
return value == null ? Collections.emptyList() : Collections.singletonList(value);
}
@Override
protected void refreshRow(InternalRow row, Predicate predicate) throws IOException {
primaryKeyRow.replaceRow(row);
if (userDefinedSeqComparator != null) {
InternalRow previous = tableState.get(primaryKeyRow);
if (previous != null && userDefinedSeqComparator.compare(previous, row) > 0) {
return;
}
}
if (row.getRowKind() == RowKind.INSERT || row.getRowKind() == RowKind.UPDATE_AFTER) {
if (predicate == null || predicate.test(row)) {
tableState.put(primaryKeyRow, row);
} else {
// The new record under primary key is filtered
// We need to delete this primary key as it no longer exists.
tableState.delete(primaryKeyRow);
}
} else {
tableState.delete(primaryKeyRow);
}
}
@Override
public byte[] toKeyBytes(InternalRow row) throws IOException {
primaryKeyRow.replaceRow(row);
return tableState.serializeKey(primaryKeyRow);
}
@Override
public byte[] toValueBytes(InternalRow row) throws IOException {
return tableState.serializeValue(row);
}
@Override
public TableBulkLoader createBulkLoader() {
BulkLoader bulkLoader = tableState.createBulkLoader();
return new TableBulkLoader() {
@Override
public void write(byte[] key, byte[] value)
throws BulkLoader.WriteException, IOException {
bulkLoader.write(key, value);
bulkLoadWritePlus(key, value);
}
@Override
public void finish() {
bulkLoader.finish();
}
};
}
public void bulkLoadWritePlus(byte[] key, byte[] value) throws IOException {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy