org.apache.hudi.table.BucketIndexBulkInsertPartitioner 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;
import org.apache.hudi.common.fs.FSUtils;
import org.apache.hudi.common.util.Option;
import org.apache.hudi.execution.bulkinsert.BulkInsertSortMode;
import org.apache.hudi.io.AppendHandleFactory;
import org.apache.hudi.io.SingleFileHandleCreateFactory;
import org.apache.hudi.io.WriteHandleFactory;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
* Abstract of bucket index bulk_insert partitioner
*/
public abstract class BucketIndexBulkInsertPartitioner implements BulkInsertPartitioner {
public static final Logger LOG = LogManager.getLogger(BucketIndexBulkInsertPartitioner.class);
private final boolean preserveHoodieMetadata;
protected final String[] sortColumnNames;
protected final boolean consistentLogicalTimestampEnabled;
protected final HoodieTable table;
protected final List indexKeyFields;
protected final List doAppend = new ArrayList<>();
protected final List fileIdPfxList = new ArrayList<>();
public BucketIndexBulkInsertPartitioner(HoodieTable table, String sortString, boolean preserveHoodieMetadata) {
this.table = table;
this.indexKeyFields = Arrays.asList(table.getConfig().getBucketIndexHashField().split(","));
this.consistentLogicalTimestampEnabled = table.getConfig().isConsistentLogicalTimestampEnabled();
if (sortString != null) {
this.sortColumnNames = sortString.split(",");
} else {
this.sortColumnNames = null;
}
this.preserveHoodieMetadata = preserveHoodieMetadata;
}
@Override
public Option getWriteHandleFactory(int idx) {
return doAppend.get(idx) ? Option.of(new AppendHandleFactory()) :
Option.of(new SingleFileHandleCreateFactory(FSUtils.createNewFileId(getFileIdPfx(idx), 0), this.preserveHoodieMetadata));
}
@Override
public String getFileIdPfx(int partitionId) {
return fileIdPfxList.get(partitionId);
}
@Override
public boolean arePartitionRecordsSorted() {
return (sortColumnNames != null && sortColumnNames.length > 0)
|| table.requireSortedRecords() || table.getConfig().getBulkInsertSortMode() != BulkInsertSortMode.NONE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy