org.apache.iceberg.flink.sink.EqualityFieldKeySelector 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.iceberg.flink.sink;
import java.util.List;
import org.apache.flink.api.java.functions.KeySelector;
import org.apache.flink.table.data.RowData;
import org.apache.flink.table.types.logical.RowType;
import org.apache.iceberg.Schema;
import org.apache.iceberg.flink.RowDataWrapper;
import org.apache.iceberg.relocated.com.google.common.collect.Sets;
import org.apache.iceberg.types.TypeUtil;
import org.apache.iceberg.util.StructLikeWrapper;
import org.apache.iceberg.util.StructProjection;
/**
* Create a {@link KeySelector} to shuffle by equality fields, to ensure same equality fields record
* will be emitted to same writer in order.
*/
class EqualityFieldKeySelector implements KeySelector {
private final Schema schema;
private final RowType flinkSchema;
private final Schema deleteSchema;
private transient RowDataWrapper rowDataWrapper;
private transient StructProjection structProjection;
private transient StructLikeWrapper structLikeWrapper;
EqualityFieldKeySelector(Schema schema, RowType flinkSchema, List equalityFieldIds) {
this.schema = schema;
this.flinkSchema = flinkSchema;
this.deleteSchema = TypeUtil.select(schema, Sets.newHashSet(equalityFieldIds));
}
/**
* Construct the {@link RowDataWrapper} lazily here because few members in it are not
* serializable. In this way, we don't have to serialize them with forcing.
*/
protected RowDataWrapper lazyRowDataWrapper() {
if (rowDataWrapper == null) {
rowDataWrapper = new RowDataWrapper(flinkSchema, schema.asStruct());
}
return rowDataWrapper;
}
/** Construct the {@link StructProjection} lazily because it is not serializable. */
protected StructProjection lazyStructProjection() {
if (structProjection == null) {
structProjection = StructProjection.create(schema, deleteSchema);
}
return structProjection;
}
/** Construct the {@link StructLikeWrapper} lazily because it is not serializable. */
protected StructLikeWrapper lazyStructLikeWrapper() {
if (structLikeWrapper == null) {
structLikeWrapper = StructLikeWrapper.forType(deleteSchema.asStruct());
}
return structLikeWrapper;
}
@Override
public Integer getKey(RowData row) {
RowDataWrapper wrappedRowData = lazyRowDataWrapper().wrap(row);
StructProjection projectedRowData = lazyStructProjection().wrap(wrappedRowData);
StructLikeWrapper wrapper = lazyStructLikeWrapper().set(projectedRowData);
return wrapper.hashCode();
}
}