[HUDI-3123] consistent hashing index: basic write path (upsert/insert) (#4480)
1. basic write path(insert/upsert) implementation 2. adapt simple bucket index
This commit is contained in:
@@ -45,7 +45,7 @@ public abstract class LazyIterableIterator<I, O> implements Iterable<O>, Iterato
|
||||
/**
|
||||
* Called once, before any elements are processed.
|
||||
*/
|
||||
protected abstract void start();
|
||||
protected void start() {}
|
||||
|
||||
/**
|
||||
* Block computation to be overwritten by sub classes.
|
||||
@@ -55,7 +55,7 @@ public abstract class LazyIterableIterator<I, O> implements Iterable<O>, Iterato
|
||||
/**
|
||||
* Called once, after all elements are processed.
|
||||
*/
|
||||
protected abstract void end();
|
||||
protected void end() {}
|
||||
|
||||
//////////////////
|
||||
// iterable implementation
|
||||
|
||||
@@ -216,19 +216,40 @@ public class HoodieIndexConfig extends HoodieConfig {
|
||||
/**
|
||||
* ***** Bucket Index Configs *****
|
||||
* Bucket Index is targeted to locate the record fast by hash in big data scenarios.
|
||||
* The current implementation is a basic version, so there are some constraints:
|
||||
* 1. Unsupported operation: bulk insert, cluster and so on.
|
||||
* 2. Bucket num change requires rewriting the partition.
|
||||
* 3. Predict the table size and future data growth well to set a reasonable bucket num.
|
||||
* 4. A bucket size is recommended less than 3GB and avoid bing too small.
|
||||
* more details and progress see [HUDI-3039].
|
||||
* A bucket size is recommended less than 3GB to avoid being too small.
|
||||
* For more details and progress, see [HUDI-3039].
|
||||
*/
|
||||
|
||||
/**
|
||||
* Bucket Index Engine Type: implementation of bucket index
|
||||
*
|
||||
* SIMPLE:
|
||||
* 0. Check `HoodieSimpleBucketLayout` for its supported operations.
|
||||
* 1. Bucket num is fixed and requires rewriting the partition if we want to change it.
|
||||
*
|
||||
* CONSISTENT_HASHING:
|
||||
* 0. Check `HoodieConsistentBucketLayout` for its supported operations.
|
||||
* 1. Bucket num will auto-adjust by running clustering (still in progress)
|
||||
*/
|
||||
public static final ConfigProperty<String> BUCKET_INDEX_ENGINE_TYPE = ConfigProperty
|
||||
.key("hoodie.index.bucket.engine")
|
||||
.defaultValue("SIMPLE")
|
||||
.sinceVersion("0.11.0")
|
||||
.withDocumentation("Type of bucket index engine to use. Default is SIMPLE bucket index, with fixed number of bucket."
|
||||
+ "Possible options are [SIMPLE | CONSISTENT_HASHING]."
|
||||
+ "Consistent hashing supports dynamic resizing of the number of bucket, solving potential data skew and file size "
|
||||
+ "issues of the SIMPLE hashing engine.");
|
||||
|
||||
/**
|
||||
* Bucket num equals file groups num in each partition.
|
||||
* Bucket num can be set according to partition size and file group size.
|
||||
*
|
||||
* In dynamic bucket index cases (e.g., using CONSISTENT_HASHING), this config of number of bucket serves as a initial bucket size
|
||||
*/
|
||||
// Bucket num equals file groups num in each partition.
|
||||
// Bucket num can be set according to partition size and file group size.
|
||||
public static final ConfigProperty<Integer> BUCKET_INDEX_NUM_BUCKETS = ConfigProperty
|
||||
.key("hoodie.bucket.index.num.buckets")
|
||||
.defaultValue(256)
|
||||
.withDocumentation("Only applies if index type is BUCKET_INDEX. Determine the number of buckets in the hudi table, "
|
||||
.withDocumentation("Only applies if index type is BUCKET. Determine the number of buckets in the hudi table, "
|
||||
+ "and each partition is divided to N buckets.");
|
||||
|
||||
public static final ConfigProperty<String> BUCKET_INDEX_HASH_FIELD = ConfigProperty
|
||||
@@ -463,6 +484,11 @@ public class HoodieIndexConfig extends HoodieConfig {
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder withBucketIndexEngineType(HoodieIndex.BucketIndexEngineType bucketType) {
|
||||
hoodieIndexConfig.setValue(BUCKET_INDEX_ENGINE_TYPE, bucketType.name());
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder withIndexClass(String indexClass) {
|
||||
hoodieIndexConfig.setValue(INDEX_CLASS_NAME, indexClass);
|
||||
return this;
|
||||
|
||||
@@ -1428,6 +1428,10 @@ public class HoodieWriteConfig extends HoodieConfig {
|
||||
return getString(HoodieIndexConfig.INDEX_CLASS_NAME);
|
||||
}
|
||||
|
||||
public HoodieIndex.BucketIndexEngineType getBucketIndexEngineType() {
|
||||
return HoodieIndex.BucketIndexEngineType.valueOf(getString(HoodieIndexConfig.BUCKET_INDEX_ENGINE_TYPE));
|
||||
}
|
||||
|
||||
public int getBloomFilterNumEntries() {
|
||||
return getInt(HoodieIndexConfig.BLOOM_FILTER_NUM_ENTRIES_VALUE);
|
||||
}
|
||||
|
||||
@@ -121,7 +121,7 @@ public abstract class HoodieIndex<I, O> implements Serializable {
|
||||
public abstract boolean isImplicitWithStorage();
|
||||
|
||||
/**
|
||||
* If the `getCustomizedPartitioner` returns a partitioner, it has to be true.
|
||||
* To indicate if a operation type requires location tagging before writing
|
||||
*/
|
||||
@PublicAPIMethod(maturity = ApiMaturityLevel.EVOLVING)
|
||||
public boolean requiresTagging(WriteOperationType operationType) {
|
||||
@@ -143,4 +143,8 @@ public abstract class HoodieIndex<I, O> implements Serializable {
|
||||
public enum IndexType {
|
||||
HBASE, INMEMORY, BLOOM, GLOBAL_BLOOM, SIMPLE, GLOBAL_SIMPLE, BUCKET, FLINK_STATE
|
||||
}
|
||||
|
||||
public enum BucketIndexEngineType {
|
||||
SIMPLE, CONSISTENT_HASHING
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,6 +22,7 @@ import org.apache.hudi.common.fs.FSUtils;
|
||||
import org.apache.hudi.common.model.HoodieKey;
|
||||
import org.apache.hudi.common.model.HoodieRecord;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
@@ -29,8 +30,8 @@ import java.util.Map;
|
||||
import java.util.regex.Pattern;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
public class BucketIdentifier {
|
||||
// compatible with the spark bucket name
|
||||
public class BucketIdentifier implements Serializable {
|
||||
// Compatible with the spark bucket name
|
||||
private static final Pattern BUCKET_NAME = Pattern.compile(".*_(\\d+)(?:\\..*)?$");
|
||||
|
||||
public static int getBucketId(HoodieRecord record, String indexKeyFields, int numBuckets) {
|
||||
@@ -38,27 +39,41 @@ public class BucketIdentifier {
|
||||
}
|
||||
|
||||
public static int getBucketId(HoodieKey hoodieKey, String indexKeyFields, int numBuckets) {
|
||||
return getBucketId(hoodieKey.getRecordKey(), indexKeyFields, numBuckets);
|
||||
return (getHashKeys(hoodieKey, indexKeyFields).hashCode() & Integer.MAX_VALUE) % numBuckets;
|
||||
}
|
||||
|
||||
public static int getBucketId(HoodieKey hoodieKey, List<String> indexKeyFields, int numBuckets) {
|
||||
return (getHashKeys(hoodieKey.getRecordKey(), indexKeyFields).hashCode() & Integer.MAX_VALUE) % numBuckets;
|
||||
}
|
||||
|
||||
public static int getBucketId(String recordKey, String indexKeyFields, int numBuckets) {
|
||||
List<String> hashKeyFields;
|
||||
if (!recordKey.contains(":")) {
|
||||
hashKeyFields = Collections.singletonList(recordKey);
|
||||
} else {
|
||||
Map<String, String> recordKeyPairs = Arrays.stream(recordKey.split(","))
|
||||
.map(p -> p.split(":"))
|
||||
.collect(Collectors.toMap(p -> p[0], p -> p[1]));
|
||||
hashKeyFields = Arrays.stream(indexKeyFields.split(","))
|
||||
.map(f -> recordKeyPairs.get(f))
|
||||
.collect(Collectors.toList());
|
||||
}
|
||||
return getBucketId(getHashKeys(recordKey, indexKeyFields), numBuckets);
|
||||
}
|
||||
|
||||
public static int getBucketId(List<String> hashKeyFields, int numBuckets) {
|
||||
return (hashKeyFields.hashCode() & Integer.MAX_VALUE) % numBuckets;
|
||||
}
|
||||
|
||||
// only for test
|
||||
public static int getBucketId(List<String> hashKeyFields, int numBuckets) {
|
||||
return hashKeyFields.hashCode() % numBuckets;
|
||||
public static List<String> getHashKeys(HoodieKey hoodieKey, String indexKeyFields) {
|
||||
return getHashKeys(hoodieKey.getRecordKey(), indexKeyFields);
|
||||
}
|
||||
|
||||
protected static List<String> getHashKeys(String recordKey, String indexKeyFields) {
|
||||
return !recordKey.contains(":") ? Collections.singletonList(recordKey) :
|
||||
getHashKeysUsingIndexFields(recordKey, Arrays.asList(indexKeyFields.split(",")));
|
||||
}
|
||||
|
||||
protected static List<String> getHashKeys(String recordKey, List<String> indexKeyFields) {
|
||||
return !recordKey.contains(":") ? Collections.singletonList(recordKey) :
|
||||
getHashKeysUsingIndexFields(recordKey, indexKeyFields);
|
||||
}
|
||||
|
||||
private static List<String> getHashKeysUsingIndexFields(String recordKey, List<String> indexKeyFields) {
|
||||
Map<String, String> recordKeyPairs = Arrays.stream(recordKey.split(","))
|
||||
.map(p -> p.split(":"))
|
||||
.collect(Collectors.toMap(p -> p[0], p -> p[1]));
|
||||
return indexKeyFields.stream()
|
||||
.map(f -> recordKeyPairs.get(f)).collect(Collectors.toList());
|
||||
}
|
||||
|
||||
public static String partitionBucketIdStr(String partition, int bucketId) {
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* 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.model.HoodieKey;
|
||||
import org.apache.hudi.common.model.HoodieRecordLocation;
|
||||
import org.apache.hudi.common.util.Option;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public interface BucketIndexLocationMapper extends Serializable {
|
||||
|
||||
/**
|
||||
* Get record location given hoodie key and partition path
|
||||
*/
|
||||
Option<HoodieRecordLocation> getRecordLocation(HoodieKey key, String partitionPath);
|
||||
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
/*
|
||||
* 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.ConsistentHashingNode;
|
||||
import org.apache.hudi.common.model.HoodieConsistentHashingMetadata;
|
||||
import org.apache.hudi.common.model.HoodieKey;
|
||||
import org.apache.hudi.common.util.hash.HashID;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.SortedMap;
|
||||
import java.util.TreeMap;
|
||||
|
||||
public class ConsistentBucketIdentifier extends BucketIdentifier {
|
||||
|
||||
/**
|
||||
* Hashing metadata of a partition
|
||||
*/
|
||||
private final HoodieConsistentHashingMetadata metadata;
|
||||
/**
|
||||
* In-memory structure to speed up ring mapping (hashing value -> hashing node)
|
||||
*/
|
||||
private final TreeMap<Integer, ConsistentHashingNode> ring;
|
||||
/**
|
||||
* Mapping from fileId -> hashing node
|
||||
*/
|
||||
private final Map<String, ConsistentHashingNode> fileIdToBucket;
|
||||
|
||||
public ConsistentBucketIdentifier(HoodieConsistentHashingMetadata metadata) {
|
||||
this.metadata = metadata;
|
||||
this.fileIdToBucket = new HashMap<>();
|
||||
this.ring = new TreeMap<>();
|
||||
initialize();
|
||||
}
|
||||
|
||||
public Collection<ConsistentHashingNode> getNodes() {
|
||||
return ring.values();
|
||||
}
|
||||
|
||||
public HoodieConsistentHashingMetadata getMetadata() {
|
||||
return metadata;
|
||||
}
|
||||
|
||||
public int getNumBuckets() {
|
||||
return ring.size();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get bucket of the given file group
|
||||
*
|
||||
* @param fileId the file group id. NOTE: not filePfx (i.e., uuid)
|
||||
*/
|
||||
public ConsistentHashingNode getBucketByFileId(String fileId) {
|
||||
return fileIdToBucket.get(fileId);
|
||||
}
|
||||
|
||||
public ConsistentHashingNode getBucket(HoodieKey hoodieKey, List<String> indexKeyFields) {
|
||||
return getBucket(getHashKeys(hoodieKey.getRecordKey(), indexKeyFields));
|
||||
}
|
||||
|
||||
protected ConsistentHashingNode getBucket(List<String> hashKeys) {
|
||||
int hashValue = HashID.getXXHash32(String.join("", hashKeys), 0);
|
||||
return getBucket(hashValue & HoodieConsistentHashingMetadata.HASH_VALUE_MASK);
|
||||
}
|
||||
|
||||
protected ConsistentHashingNode getBucket(int hashValue) {
|
||||
SortedMap<Integer, ConsistentHashingNode> tailMap = ring.tailMap(hashValue);
|
||||
return tailMap.isEmpty() ? ring.firstEntry().getValue() : tailMap.get(tailMap.firstKey());
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize necessary data structure to facilitate bucket identifying.
|
||||
* Specifically, we construct:
|
||||
* - An in-memory tree (ring) to speed up range mapping searching.
|
||||
* - A hash table (fileIdToBucket) to allow lookup of bucket using fileId.
|
||||
*/
|
||||
private void initialize() {
|
||||
for (ConsistentHashingNode p : metadata.getNodes()) {
|
||||
ring.put(p.getValue(), p);
|
||||
// One bucket has only one file group, so append 0 directly
|
||||
fileIdToBucket.put(FSUtils.createNewFileId(p.getFileIdPrefix(), 0), p);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -26,9 +26,7 @@ import org.apache.hudi.common.model.HoodieRecord;
|
||||
import org.apache.hudi.common.model.HoodieRecordLocation;
|
||||
import org.apache.hudi.common.model.WriteOperationType;
|
||||
import org.apache.hudi.common.util.Option;
|
||||
import org.apache.hudi.common.util.collection.Pair;
|
||||
import org.apache.hudi.config.HoodieWriteConfig;
|
||||
import org.apache.hudi.exception.HoodieIOException;
|
||||
import org.apache.hudi.exception.HoodieIndexException;
|
||||
import org.apache.hudi.index.HoodieIndex;
|
||||
import org.apache.hudi.index.HoodieIndexUtils;
|
||||
@@ -37,28 +35,31 @@ import org.apache.hudi.table.HoodieTable;
|
||||
import org.apache.log4j.LogManager;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Hash indexing mechanism.
|
||||
*/
|
||||
public class HoodieBucketIndex extends HoodieIndex<Object, Object> {
|
||||
public abstract class HoodieBucketIndex extends HoodieIndex<Object, Object> {
|
||||
|
||||
private static final Logger LOG = LogManager.getLogger(HoodieBucketIndex.class);
|
||||
private static final Logger LOG = LogManager.getLogger(HoodieBucketIndex.class);
|
||||
|
||||
private final int numBuckets;
|
||||
protected final int numBuckets;
|
||||
protected final List<String> indexKeyFields;
|
||||
|
||||
public HoodieBucketIndex(HoodieWriteConfig config) {
|
||||
super(config);
|
||||
numBuckets = config.getBucketIndexNumBuckets();
|
||||
LOG.info("use bucket index, numBuckets=" + numBuckets);
|
||||
|
||||
this.numBuckets = config.getBucketIndexNumBuckets();
|
||||
this.indexKeyFields = Arrays.asList(config.getBucketIndexHashField().split(","));
|
||||
LOG.info("Use bucket index, numBuckets = " + numBuckets + ", indexFields: " + indexKeyFields);
|
||||
}
|
||||
|
||||
@Override
|
||||
public HoodieData<WriteStatus> updateLocation(HoodieData<WriteStatus> writeStatuses,
|
||||
HoodieEngineContext context,
|
||||
HoodieTable hoodieTable)
|
||||
HoodieEngineContext context,
|
||||
HoodieTable hoodieTable)
|
||||
throws HoodieIndexException {
|
||||
return writeStatuses;
|
||||
}
|
||||
@@ -68,62 +69,35 @@ public class HoodieBucketIndex extends HoodieIndex<Object, Object> {
|
||||
HoodieData<HoodieRecord<R>> records, HoodieEngineContext context,
|
||||
HoodieTable hoodieTable)
|
||||
throws HoodieIndexException {
|
||||
HoodieData<HoodieRecord<R>> taggedRecords = records.mapPartitions(recordIter -> {
|
||||
// partitionPath -> bucketId -> fileInfo
|
||||
Map<String, Map<Integer, Pair<String, String>>> partitionPathFileIDList = new HashMap<>();
|
||||
return new LazyIterableIterator<HoodieRecord<R>, HoodieRecord<R>>(recordIter) {
|
||||
// Initialize necessary information before tagging. e.g., hashing metadata
|
||||
List<String> partitions = records.map(HoodieRecord::getPartitionPath).distinct().collectAsList();
|
||||
LOG.info("Initializing hashing metadata for partitions: " + partitions);
|
||||
BucketIndexLocationMapper mapper = getLocationMapper(hoodieTable, partitions);
|
||||
|
||||
@Override
|
||||
protected void start() {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
protected HoodieRecord<R> computeNext() {
|
||||
HoodieRecord record = recordIter.next();
|
||||
int bucketId = BucketIdentifier.getBucketId(record, config.getBucketIndexHashField(), numBuckets);
|
||||
String partitionPath = record.getPartitionPath();
|
||||
if (!partitionPathFileIDList.containsKey(partitionPath)) {
|
||||
partitionPathFileIDList.put(partitionPath, loadPartitionBucketIdFileIdMapping(hoodieTable, partitionPath));
|
||||
return records.mapPartitions(iterator ->
|
||||
new LazyIterableIterator<HoodieRecord<R>, HoodieRecord<R>>(iterator) {
|
||||
@Override
|
||||
protected HoodieRecord<R> computeNext() {
|
||||
// TODO maybe batch the operation to improve performance
|
||||
HoodieRecord record = inputItr.next();
|
||||
Option<HoodieRecordLocation> loc = mapper.getRecordLocation(record.getKey(), record.getPartitionPath());
|
||||
return HoodieIndexUtils.getTaggedRecord(record, loc);
|
||||
}
|
||||
if (partitionPathFileIDList.get(partitionPath).containsKey(bucketId)) {
|
||||
Pair<String, String> fileInfo = partitionPathFileIDList.get(partitionPath).get(bucketId);
|
||||
return HoodieIndexUtils.getTaggedRecord(record, Option.of(
|
||||
new HoodieRecordLocation(fileInfo.getRight(), fileInfo.getLeft())
|
||||
));
|
||||
}
|
||||
return record;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void end() {
|
||||
|
||||
}
|
||||
};
|
||||
}, true);
|
||||
return taggedRecords;
|
||||
);
|
||||
}
|
||||
|
||||
private Map<Integer, Pair<String, String>> loadPartitionBucketIdFileIdMapping(
|
||||
HoodieTable hoodieTable,
|
||||
String partition) {
|
||||
// bucketId -> fileIds
|
||||
Map<Integer, Pair<String, String>> fileIDList = new HashMap<>();
|
||||
HoodieIndexUtils
|
||||
.getLatestBaseFilesForPartition(partition, hoodieTable)
|
||||
.forEach(file -> {
|
||||
String fileId = file.getFileId();
|
||||
String commitTime = file.getCommitTime();
|
||||
int bucketId = BucketIdentifier.bucketIdFromFileId(fileId);
|
||||
if (!fileIDList.containsKey(bucketId)) {
|
||||
fileIDList.put(bucketId, Pair.of(fileId, commitTime));
|
||||
} else {
|
||||
// check if bucket data is valid
|
||||
throw new HoodieIOException("Find multiple files at partition path="
|
||||
+ partition + " belongs to the same bucket id = " + bucketId);
|
||||
}
|
||||
});
|
||||
return fileIDList;
|
||||
@Override
|
||||
public boolean requiresTagging(WriteOperationType operationType) {
|
||||
switch (operationType) {
|
||||
case INSERT:
|
||||
case INSERT_OVERWRITE:
|
||||
case UPSERT:
|
||||
case DELETE:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -138,7 +112,7 @@ public class HoodieBucketIndex extends HoodieIndex<Object, Object> {
|
||||
|
||||
@Override
|
||||
public boolean canIndexLogFiles() {
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -146,19 +120,12 @@ public class HoodieBucketIndex extends HoodieIndex<Object, Object> {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean requiresTagging(WriteOperationType operationType) {
|
||||
switch (operationType) {
|
||||
case INSERT:
|
||||
case INSERT_OVERWRITE:
|
||||
case UPSERT:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public int getNumBuckets() {
|
||||
return numBuckets;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a location mapper for the given table & partitionPath
|
||||
*/
|
||||
protected abstract BucketIndexLocationMapper getLocationMapper(HoodieTable table, List<String> partitionPath);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,99 @@
|
||||
/*
|
||||
* 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.model.HoodieKey;
|
||||
import org.apache.hudi.common.model.HoodieRecordLocation;
|
||||
import org.apache.hudi.common.util.Option;
|
||||
import org.apache.hudi.config.HoodieWriteConfig;
|
||||
import org.apache.hudi.exception.HoodieIOException;
|
||||
import org.apache.hudi.index.HoodieIndexUtils;
|
||||
import org.apache.hudi.table.HoodieTable;
|
||||
|
||||
import org.apache.log4j.LogManager;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
/**
|
||||
* Simple bucket index implementation, with fixed bucket number.
|
||||
*/
|
||||
public class HoodieSimpleBucketIndex extends HoodieBucketIndex {
|
||||
|
||||
private static final Logger LOG = LogManager.getLogger(HoodieSimpleBucketIndex.class);
|
||||
|
||||
public HoodieSimpleBucketIndex(HoodieWriteConfig config) {
|
||||
super(config);
|
||||
}
|
||||
|
||||
private Map<Integer, HoodieRecordLocation> loadPartitionBucketIdFileIdMapping(
|
||||
HoodieTable hoodieTable,
|
||||
String partition) {
|
||||
// bucketId -> fileIds
|
||||
Map<Integer, HoodieRecordLocation> bucketIdToFileIdMapping = new HashMap<>();
|
||||
hoodieTable.getMetaClient().reloadActiveTimeline();
|
||||
HoodieIndexUtils
|
||||
.getLatestBaseFilesForPartition(partition, hoodieTable)
|
||||
.forEach(file -> {
|
||||
String fileId = file.getFileId();
|
||||
String commitTime = file.getCommitTime();
|
||||
int bucketId = BucketIdentifier.bucketIdFromFileId(fileId);
|
||||
if (!bucketIdToFileIdMapping.containsKey(bucketId)) {
|
||||
bucketIdToFileIdMapping.put(bucketId, new HoodieRecordLocation(commitTime, fileId));
|
||||
} else {
|
||||
// Check if bucket data is valid
|
||||
throw new HoodieIOException("Find multiple files at partition path="
|
||||
+ partition + " belongs to the same bucket id = " + bucketId);
|
||||
}
|
||||
});
|
||||
return bucketIdToFileIdMapping;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canIndexLogFiles() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected BucketIndexLocationMapper getLocationMapper(HoodieTable table, List<String> partitionPath) {
|
||||
return new SimpleBucketIndexLocationMapper(table, partitionPath);
|
||||
}
|
||||
|
||||
public class SimpleBucketIndexLocationMapper implements BucketIndexLocationMapper {
|
||||
|
||||
/**
|
||||
* Mapping from partitionPath -> bucketId -> fileInfo
|
||||
*/
|
||||
private final Map<String, Map<Integer, HoodieRecordLocation>> partitionPathFileIDList;
|
||||
|
||||
public SimpleBucketIndexLocationMapper(HoodieTable table, List<String> partitions) {
|
||||
partitionPathFileIDList = partitions.stream().collect(Collectors.toMap(p -> p, p -> loadPartitionBucketIdFileIdMapping(table, p)));
|
||||
}
|
||||
|
||||
@Override
|
||||
public Option<HoodieRecordLocation> getRecordLocation(HoodieKey key, String partitionPath) {
|
||||
int bucketId = BucketIdentifier.getBucketId(key, indexKeyFields, numBuckets);
|
||||
Map<Integer, HoodieRecordLocation> bucketIdToFileIdMapping = partitionPathFileIDList.get(partitionPath);
|
||||
return Option.ofNullable(bucketIdToFileIdMapping.getOrDefault(bucketId, null));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -19,6 +19,7 @@
|
||||
package org.apache.hudi.io;
|
||||
|
||||
import org.apache.hudi.common.engine.TaskContextSupplier;
|
||||
import org.apache.hudi.common.fs.FSUtils;
|
||||
import org.apache.hudi.common.model.HoodieRecordPayload;
|
||||
import org.apache.hudi.config.HoodieWriteConfig;
|
||||
import org.apache.hudi.table.HoodieTable;
|
||||
@@ -32,6 +33,6 @@ public abstract class WriteHandleFactory<T extends HoodieRecordPayload, I, K, O>
|
||||
String partitionPath, String fileIdPrefix, TaskContextSupplier taskContextSupplier);
|
||||
|
||||
protected String getNextFileId(String idPfx) {
|
||||
return String.format("%s-%d", idPfx, numFilesWritten++);
|
||||
return FSUtils.createNewFileId(idPfx, numFilesWritten++);
|
||||
}
|
||||
}
|
||||
@@ -94,7 +94,7 @@ public abstract class BaseCommitActionExecutor<T extends HoodieRecordPayload, I,
|
||||
this.lastCompletedTxn = TransactionUtils.getLastCompletedTxnInstantAndMetadata(table.getMetaClient());
|
||||
this.pendingInflightAndRequestedInstants = TransactionUtils.getInflightAndRequestedInstants(table.getMetaClient());
|
||||
this.pendingInflightAndRequestedInstants.remove(instantTime);
|
||||
if (table.getStorageLayout().doesNotSupport(operationType)) {
|
||||
if (!table.getStorageLayout().writeOperationSupported(operationType)) {
|
||||
throw new UnsupportedOperationException("Executor " + this.getClass().getSimpleName()
|
||||
+ " is not compatible with table layout " + table.getStorageLayout().getClass().getSimpleName());
|
||||
}
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
/*
|
||||
* 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.storage;
|
||||
|
||||
import org.apache.hudi.common.model.WriteOperationType;
|
||||
import org.apache.hudi.common.util.CollectionUtils;
|
||||
import org.apache.hudi.common.util.Option;
|
||||
import org.apache.hudi.config.HoodieWriteConfig;
|
||||
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* Storage layout when using consistent hashing bucket index.
|
||||
*/
|
||||
public class HoodieConsistentBucketLayout extends HoodieStorageLayout {
|
||||
public static final Set<WriteOperationType> SUPPORTED_OPERATIONS = CollectionUtils.createImmutableSet(
|
||||
WriteOperationType.INSERT,
|
||||
WriteOperationType.INSERT_PREPPED,
|
||||
WriteOperationType.UPSERT,
|
||||
WriteOperationType.UPSERT_PREPPED,
|
||||
WriteOperationType.INSERT_OVERWRITE,
|
||||
WriteOperationType.DELETE,
|
||||
WriteOperationType.COMPACT,
|
||||
WriteOperationType.DELETE_PARTITION
|
||||
);
|
||||
|
||||
public HoodieConsistentBucketLayout(HoodieWriteConfig config) {
|
||||
super(config);
|
||||
}
|
||||
|
||||
/**
|
||||
* Bucketing controls the number of file groups directly.
|
||||
*/
|
||||
@Override
|
||||
public boolean determinesNumFileGroups() {
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Consistent hashing will tag all incoming records, so we could go ahead reusing an existing Partitioner
|
||||
*/
|
||||
@Override
|
||||
public Option<String> layoutPartitionerClass() {
|
||||
return Option.empty();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean writeOperationSupported(WriteOperationType operationType) {
|
||||
return SUPPORTED_OPERATIONS.contains(operationType);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -31,15 +31,18 @@ public class HoodieDefaultLayout extends HoodieStorageLayout {
|
||||
super(config);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean determinesNumFileGroups() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Option<String> layoutPartitionerClass() {
|
||||
return Option.empty();
|
||||
}
|
||||
|
||||
public boolean doesNotSupport(WriteOperationType operationType) {
|
||||
return false;
|
||||
@Override
|
||||
public boolean writeOperationSupported(WriteOperationType operationType) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -30,7 +30,14 @@ public final class HoodieLayoutFactory {
|
||||
case DEFAULT:
|
||||
return new HoodieDefaultLayout(config);
|
||||
case BUCKET:
|
||||
return new HoodieBucketLayout(config);
|
||||
switch (config.getBucketIndexEngineType()) {
|
||||
case SIMPLE:
|
||||
return new HoodieSimpleBucketLayout(config);
|
||||
case CONSISTENT_HASHING:
|
||||
return new HoodieConsistentBucketLayout(config);
|
||||
default:
|
||||
throw new HoodieNotSupportedException("Unknown bucket index engine type: " + config.getBucketIndexEngineType());
|
||||
}
|
||||
default:
|
||||
throw new HoodieNotSupportedException("Unknown layout type, set " + config.getLayoutType());
|
||||
}
|
||||
|
||||
@@ -19,31 +19,30 @@
|
||||
package org.apache.hudi.table.storage;
|
||||
|
||||
import org.apache.hudi.common.model.WriteOperationType;
|
||||
import org.apache.hudi.common.util.CollectionUtils;
|
||||
import org.apache.hudi.common.util.Option;
|
||||
import org.apache.hudi.config.HoodieLayoutConfig;
|
||||
import org.apache.hudi.config.HoodieWriteConfig;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* Storage layout when using bucket index. Data distribution and files organization are in a specific way.
|
||||
*/
|
||||
public class HoodieBucketLayout extends HoodieStorageLayout {
|
||||
public class HoodieSimpleBucketLayout extends HoodieStorageLayout {
|
||||
|
||||
public static final Set<WriteOperationType> SUPPORTED_OPERATIONS = new HashSet<WriteOperationType>() {{
|
||||
add(WriteOperationType.INSERT);
|
||||
add(WriteOperationType.INSERT_PREPPED);
|
||||
add(WriteOperationType.UPSERT);
|
||||
add(WriteOperationType.UPSERT_PREPPED);
|
||||
add(WriteOperationType.INSERT_OVERWRITE);
|
||||
add(WriteOperationType.DELETE);
|
||||
add(WriteOperationType.COMPACT);
|
||||
add(WriteOperationType.DELETE_PARTITION);
|
||||
}
|
||||
};
|
||||
public static final Set<WriteOperationType> SUPPORTED_OPERATIONS = CollectionUtils.createImmutableSet(
|
||||
WriteOperationType.INSERT,
|
||||
WriteOperationType.INSERT_PREPPED,
|
||||
WriteOperationType.UPSERT,
|
||||
WriteOperationType.UPSERT_PREPPED,
|
||||
WriteOperationType.INSERT_OVERWRITE,
|
||||
WriteOperationType.DELETE,
|
||||
WriteOperationType.COMPACT,
|
||||
WriteOperationType.DELETE_PARTITION
|
||||
);
|
||||
|
||||
public HoodieBucketLayout(HoodieWriteConfig config) {
|
||||
public HoodieSimpleBucketLayout(HoodieWriteConfig config) {
|
||||
super(config);
|
||||
}
|
||||
|
||||
@@ -55,6 +54,7 @@ public class HoodieBucketLayout extends HoodieStorageLayout {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Option<String> layoutPartitionerClass() {
|
||||
return config.contains(HoodieLayoutConfig.LAYOUT_PARTITIONER_CLASS_NAME)
|
||||
? Option.of(config.getString(HoodieLayoutConfig.LAYOUT_PARTITIONER_CLASS_NAME.key()))
|
||||
@@ -62,7 +62,7 @@ public class HoodieBucketLayout extends HoodieStorageLayout {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean doesNotSupport(WriteOperationType operationType) {
|
||||
return !SUPPORTED_OPERATIONS.contains(operationType);
|
||||
public boolean writeOperationSupported(WriteOperationType operationType) {
|
||||
return SUPPORTED_OPERATIONS.contains(operationType);
|
||||
}
|
||||
}
|
||||
@@ -48,7 +48,7 @@ public abstract class HoodieStorageLayout implements Serializable {
|
||||
/**
|
||||
* Determines if the operation is supported by the layout.
|
||||
*/
|
||||
public abstract boolean doesNotSupport(WriteOperationType operationType);
|
||||
public abstract boolean writeOperationSupported(WriteOperationType operationType);
|
||||
|
||||
public enum LayoutType {
|
||||
DEFAULT, BUCKET
|
||||
|
||||
@@ -0,0 +1,122 @@
|
||||
/*
|
||||
* 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.model.HoodieAvroRecord;
|
||||
import org.apache.hudi.common.model.HoodieKey;
|
||||
import org.apache.hudi.common.model.HoodieRecord;
|
||||
import org.apache.hudi.keygen.KeyGenUtils;
|
||||
|
||||
import org.apache.avro.Schema;
|
||||
import org.apache.avro.generic.GenericData;
|
||||
import org.apache.avro.generic.GenericRecord;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
public class TestBucketIdentifier {
|
||||
|
||||
public static final String NESTED_COL_SCHEMA = "{\"type\":\"record\", \"name\":\"nested_col\",\"fields\": ["
|
||||
+ "{\"name\": \"prop1\",\"type\": \"string\"},{\"name\": \"prop2\", \"type\": \"long\"}]}";
|
||||
public static final String EXAMPLE_SCHEMA = "{\"type\": \"record\",\"name\": \"testrec\",\"fields\": [ "
|
||||
+ "{\"name\": \"timestamp\",\"type\": \"long\"},{\"name\": \"_row_key\", \"type\": \"string\"},"
|
||||
+ "{\"name\": \"ts_ms\", \"type\": \"string\"},"
|
||||
+ "{\"name\": \"pii_col\", \"type\": \"string\"},"
|
||||
+ "{\"name\": \"nested_col\",\"type\": "
|
||||
+ NESTED_COL_SCHEMA + "}"
|
||||
+ "]}";
|
||||
|
||||
public static GenericRecord getRecord() {
|
||||
return getRecord(getNestedColRecord("val1", 10L));
|
||||
}
|
||||
|
||||
public static GenericRecord getNestedColRecord(String prop1Value, Long prop2Value) {
|
||||
GenericRecord nestedColRecord = new GenericData.Record(new Schema.Parser().parse(NESTED_COL_SCHEMA));
|
||||
nestedColRecord.put("prop1", prop1Value);
|
||||
nestedColRecord.put("prop2", prop2Value);
|
||||
return nestedColRecord;
|
||||
}
|
||||
|
||||
public static GenericRecord getRecord(GenericRecord nestedColRecord) {
|
||||
GenericRecord record = new GenericData.Record(new Schema.Parser().parse(EXAMPLE_SCHEMA));
|
||||
record.put("timestamp", 4357686L);
|
||||
record.put("_row_key", "key1");
|
||||
record.put("ts_ms", "2020-03-21");
|
||||
record.put("pii_col", "pi");
|
||||
record.put("nested_col", nestedColRecord);
|
||||
return record;
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testBucketFileId() {
|
||||
int[] ids = {0, 4, 8, 16, 32, 64, 128, 256, 512, 1000, 1024, 4096, 10000, 100000};
|
||||
for (int id : ids) {
|
||||
String bucketIdStr = BucketIdentifier.bucketIdStr(id);
|
||||
String fileId = BucketIdentifier.newBucketFileIdPrefix(bucketIdStr);
|
||||
assert BucketIdentifier.bucketIdFromFileId(fileId) == id;
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testBucketIdWithSimpleRecordKey() {
|
||||
String recordKeyField = "_row_key";
|
||||
String indexKeyField = "_row_key";
|
||||
GenericRecord record = getRecord();
|
||||
HoodieRecord hoodieRecord = new HoodieAvroRecord(
|
||||
new HoodieKey(KeyGenUtils.getRecordKey(record, recordKeyField, false), ""), null);
|
||||
int bucketId = BucketIdentifier.getBucketId(hoodieRecord, indexKeyField, 8);
|
||||
assert bucketId == BucketIdentifier.getBucketId(
|
||||
Arrays.asList(record.get(indexKeyField).toString()), 8);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testBucketIdWithComplexRecordKey() {
|
||||
List<String> recordKeyField = Arrays.asList("_row_key", "ts_ms");
|
||||
String indexKeyField = "_row_key";
|
||||
GenericRecord record = getRecord();
|
||||
HoodieRecord hoodieRecord = new HoodieAvroRecord(
|
||||
new HoodieKey(KeyGenUtils.getRecordKey(record, recordKeyField, false), ""), null);
|
||||
int bucketId = BucketIdentifier.getBucketId(hoodieRecord, indexKeyField, 8);
|
||||
assert bucketId == BucketIdentifier.getBucketId(
|
||||
Arrays.asList(record.get(indexKeyField).toString()), 8);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGetHashKeys() {
|
||||
BucketIdentifier identifier = new BucketIdentifier();
|
||||
List<String> keys = identifier.getHashKeys(new HoodieKey("abc", "partition"), "");
|
||||
Assertions.assertEquals(1, keys.size());
|
||||
Assertions.assertEquals("abc", keys.get(0));
|
||||
|
||||
keys = identifier.getHashKeys(new HoodieKey("f1:abc", "partition"), "f1");
|
||||
Assertions.assertEquals(1, keys.size());
|
||||
Assertions.assertEquals("abc", keys.get(0));
|
||||
|
||||
keys = identifier.getHashKeys(new HoodieKey("f1:abc,f2:bcd", "partition"), "f2");
|
||||
Assertions.assertEquals(1, keys.size());
|
||||
Assertions.assertEquals("bcd", keys.get(0));
|
||||
|
||||
keys = identifier.getHashKeys(new HoodieKey("f1:abc,f2:bcd", "partition"), "f1,f2");
|
||||
Assertions.assertEquals(2, keys.size());
|
||||
Assertions.assertEquals("abc", keys.get(0));
|
||||
Assertions.assertEquals("bcd", keys.get(1));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,79 @@
|
||||
/*
|
||||
* 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.ConsistentHashingNode;
|
||||
import org.apache.hudi.common.model.HoodieConsistentHashingMetadata;
|
||||
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
import static org.apache.hudi.common.model.HoodieConsistentHashingMetadata.HASH_VALUE_MASK;
|
||||
|
||||
/**
|
||||
* Unit test of consistent bucket identifier
|
||||
*/
|
||||
public class TestConsistentBucketIdIdentifier {
|
||||
|
||||
@Test
|
||||
public void testGetBucket() {
|
||||
List<ConsistentHashingNode> nodes = Arrays.asList(
|
||||
new ConsistentHashingNode(100, "0"),
|
||||
new ConsistentHashingNode(0x2fffffff, "1"),
|
||||
new ConsistentHashingNode(0x4fffffff, "2"));
|
||||
HoodieConsistentHashingMetadata meta = new HoodieConsistentHashingMetadata((short) 0, "", "", 3, 0, nodes);
|
||||
ConsistentBucketIdentifier identifier = new ConsistentBucketIdentifier(meta);
|
||||
|
||||
Assertions.assertEquals(3, identifier.getNumBuckets());
|
||||
|
||||
// Get bucket by hash keys
|
||||
Assertions.assertEquals(nodes.get(2), identifier.getBucket(Arrays.asList("Hudi")));
|
||||
Assertions.assertEquals(nodes.get(1), identifier.getBucket(Arrays.asList("bucket_index")));
|
||||
Assertions.assertEquals(nodes.get(1), identifier.getBucket(Arrays.asList("consistent_hashing")));
|
||||
Assertions.assertEquals(nodes.get(1), identifier.getBucket(Arrays.asList("bucket_index", "consistent_hashing")));
|
||||
int[] ref1 = {2, 2, 1, 1, 0, 1, 1, 1, 0, 1};
|
||||
int[] ref2 = {1, 0, 1, 0, 1, 1, 1, 0, 1, 2};
|
||||
for (int i = 0; i < 10; ++i) {
|
||||
Assertions.assertEquals(nodes.get(ref1[i]), identifier.getBucket(Arrays.asList(Integer.toString(i))));
|
||||
Assertions.assertEquals(nodes.get(ref2[i]), identifier.getBucket(Arrays.asList(Integer.toString(i), Integer.toString(i + 1))));
|
||||
}
|
||||
|
||||
// Get bucket by hash value
|
||||
Assertions.assertEquals(nodes.get(0), identifier.getBucket(0));
|
||||
Assertions.assertEquals(nodes.get(0), identifier.getBucket(50));
|
||||
Assertions.assertEquals(nodes.get(0), identifier.getBucket(100));
|
||||
Assertions.assertEquals(nodes.get(1), identifier.getBucket(101));
|
||||
Assertions.assertEquals(nodes.get(1), identifier.getBucket(0x1fffffff));
|
||||
Assertions.assertEquals(nodes.get(1), identifier.getBucket(0x2fffffff));
|
||||
Assertions.assertEquals(nodes.get(2), identifier.getBucket(0x40000000));
|
||||
Assertions.assertEquals(nodes.get(2), identifier.getBucket(0x40000001));
|
||||
Assertions.assertEquals(nodes.get(2), identifier.getBucket(0x4fffffff));
|
||||
Assertions.assertEquals(nodes.get(0), identifier.getBucket(0x50000000));
|
||||
Assertions.assertEquals(nodes.get(0), identifier.getBucket(HASH_VALUE_MASK));
|
||||
|
||||
// Get bucket by file id
|
||||
Assertions.assertEquals(nodes.get(0), identifier.getBucketByFileId(FSUtils.createNewFileId("0", 0)));
|
||||
Assertions.assertEquals(nodes.get(1), identifier.getBucketByFileId(FSUtils.createNewFileId("1", 0)));
|
||||
Assertions.assertEquals(nodes.get(2), identifier.getBucketByFileId(FSUtils.createNewFileId("2", 0)));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user