org.apache.hudi.index.bucket.BucketIdentifier 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.index.bucket;
import org.apache.hudi.common.fs.FSUtils;
import org.apache.hudi.common.model.HoodieKey;
import org.apache.hudi.common.model.HoodieRecord;
import org.apache.hudi.keygen.KeyGenUtils;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.regex.Pattern;
public class BucketIdentifier implements Serializable {
// Compatible with the spark bucket name
private static final Pattern BUCKET_NAME = Pattern.compile(".*_(\\d+)(?:\\..*)?$");
// Ensure the same records keys from different writers are desired to be distributed into the same bucket
private static final String CONSTANT_FILE_ID_SUFFIX = "-0000-0000-0000-000000000000";
public static int getBucketId(HoodieRecord record, String indexKeyFields, int numBuckets) {
return getBucketId(record.getKey(), indexKeyFields, numBuckets);
}
public static int getBucketId(HoodieKey hoodieKey, String indexKeyFields, int numBuckets) {
return getBucketId(getHashKeys(hoodieKey, indexKeyFields), numBuckets);
}
public static int getBucketId(HoodieKey hoodieKey, List indexKeyFields, int numBuckets) {
return getBucketId(getHashKeys(hoodieKey.getRecordKey(), indexKeyFields), numBuckets);
}
public static int getBucketId(String recordKey, String indexKeyFields, int numBuckets) {
return getBucketId(getHashKeys(recordKey, indexKeyFields), numBuckets);
}
public static int getBucketId(List hashKeyFields, int numBuckets) {
return (hashKeyFields.hashCode() & Integer.MAX_VALUE) % numBuckets;
}
public static List getHashKeys(HoodieKey hoodieKey, String indexKeyFields) {
return getHashKeys(hoodieKey.getRecordKey(), indexKeyFields);
}
protected static List getHashKeys(String recordKey, String indexKeyFields) {
return !recordKey.contains(":") ? Collections.singletonList(recordKey) :
getHashKeysUsingIndexFields(recordKey, Arrays.asList(indexKeyFields.split(",")));
}
protected static List getHashKeys(String recordKey, List indexKeyFields) {
return !recordKey.contains(":") ? Collections.singletonList(recordKey) :
getHashKeysUsingIndexFields(recordKey, indexKeyFields);
}
private static List getHashKeysUsingIndexFields(String recordKey, List indexKeyFields) {
return Arrays.asList(KeyGenUtils.extractRecordKeysByFields(recordKey, indexKeyFields));
}
public static String partitionBucketIdStr(String partition, int bucketId) {
return String.format("%s_%s", partition, bucketIdStr(bucketId));
}
public static int bucketIdFromFileId(String fileId) {
return Integer.parseInt(bucketIdStrFromFileId(fileId));
}
public static String bucketIdStrFromFileId(String fileId) {
return fileId.substring(0, 8);
}
public static String bucketIdStr(int n) {
return String.format("%08d", n);
}
public static String newBucketFileIdPrefix(int bucketId, boolean fixed) {
return fixed ? newBucketFileIdFixedSuffix(bucketId) : newBucketFileIdPrefix(bucketId);
}
public static String newBucketFileIdPrefix(String bucketId, boolean fixed) {
return fixed ? newBucketFileIdFixedSuffix(bucketId) : newBucketFileIdPrefix(bucketId);
}
public static String newBucketFileIdPrefix(int bucketId) {
return newBucketFileIdPrefix(bucketIdStr(bucketId));
}
public static String newBucketFileIdPrefix(String fileId, int bucketId) {
return fileId.replaceFirst(".{8}", bucketIdStr(bucketId));
}
public static String newBucketFileIdPrefix(String bucketId) {
return FSUtils.createNewFileIdPfx().replaceFirst(".{8}", bucketId);
}
private static String newBucketFileIdFixedSuffix(String bucketId) {
return bucketId + CONSTANT_FILE_ID_SUFFIX;
}
private static String newBucketFileIdFixedSuffix(int bucketId) {
return newBucketFileIdFixedSuffix(bucketIdStr(bucketId));
}
public static boolean isBucketFileName(String name) {
return BUCKET_NAME.matcher(name).matches();
}
public static int mod(int x, int y) {
return x % y;
}
}