org.apache.hudi.table.action.commit.BaseWriteHelper 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 org.apache.hudi.table.action.commit;
import org.apache.hudi.common.config.TypedProperties;
import org.apache.hudi.common.engine.HoodieEngineContext;
import org.apache.hudi.common.function.SerializableFunctionUnchecked;
import org.apache.hudi.common.model.HoodieRecordMerger;
import org.apache.hudi.common.model.WriteOperationType;
import org.apache.hudi.common.util.HoodieRecordUtils;
import org.apache.hudi.exception.HoodieUpsertException;
import org.apache.hudi.index.HoodieIndex;
import org.apache.hudi.table.HoodieTable;
import org.apache.hudi.table.action.HoodieWriteMetadata;
public abstract class BaseWriteHelper extends ParallelismHelper {
protected BaseWriteHelper(SerializableFunctionUnchecked partitionNumberExtractor) {
super(partitionNumberExtractor);
}
public HoodieWriteMetadata write(String instantTime,
I inputRecords,
HoodieEngineContext context,
HoodieTable table,
boolean shouldCombine,
int configuredShuffleParallelism,
BaseCommitActionExecutor executor,
WriteOperationType operationType) {
try {
// De-dupe/merge if needed
I dedupedRecords =
combineOnCondition(shouldCombine, inputRecords, configuredShuffleParallelism, table);
I taggedRecords = dedupedRecords;
if (table.getIndex().requiresTagging(operationType)) {
// perform index loop up to get existing location of records
context.setJobStatus(this.getClass().getSimpleName(), "Tagging: " + table.getConfig().getTableName());
taggedRecords = tag(dedupedRecords, context, table);
}
HoodieWriteMetadata result = executor.execute(taggedRecords);
return result;
} catch (Throwable e) {
if (e instanceof HoodieUpsertException) {
throw (HoodieUpsertException) e;
}
throw new HoodieUpsertException("Failed to upsert for commit time " + instantTime, e);
}
}
protected abstract I tag(
I dedupedRecords, HoodieEngineContext context, HoodieTable table);
public I combineOnCondition(
boolean condition, I records, int configuredParallelism, HoodieTable table) {
int targetParallelism = deduceShuffleParallelism(records, configuredParallelism);
return condition ? deduplicateRecords(records, table, targetParallelism) : records;
}
/**
* Deduplicate Hoodie records, using the given deduplication function.
*
* @param records hoodieRecords to deduplicate
* @param parallelism parallelism or partitions to be used while reducing/deduplicating
* @return Collection of HoodieRecord already be deduplicated
*/
public I deduplicateRecords(I records, HoodieTable table, int parallelism) {
HoodieRecordMerger recordMerger = HoodieRecordUtils.mergerToPreCombineMode(table.getConfig().getRecordMerger());
return deduplicateRecords(records, table.getIndex(), parallelism, table.getConfig().getSchema(), table.getConfig().getProps(), recordMerger);
}
public abstract I deduplicateRecords(I records, HoodieIndex, ?> index, int parallelism, String schema, TypedProperties props, HoodieRecordMerger merger);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy