-
Notifications
You must be signed in to change notification settings - Fork 1.5k
[UUID 8/8] UUID integration tests, benchmarks and docs #18876
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
xiangfu0
wants to merge
9
commits into
apache:master
Choose a base branch
from
xiangfu0:uuid-split/08-it-bench-docs
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
83dd3fe
[UUID 5/8] UUID aggregation, group-by and distinct
xiangfu0 0903746
Return the converted UUID form for group keys in the DataTable reduce…
xiangfu0 fd6df48
Cast directly to UuidKey in UuidToIdMap
xiangfu0 1977e2c
Hash UUID's stored bytes in distinct-count aggregations, not a canoni…
xiangfu0 1a5b302
Drop UUID special-casing that the stored type already covers
xiangfu0 0e66573
Format DISTINCT rows in one pass in BytesDistinctTable
xiangfu0 f15f9b9
[UUID 6/8] UUID multi-stage engine (planner + runtime)
xiangfu0 08aa3a0
[UUID 7/8] UUID partitioning
xiangfu0 a872a24
[UUID 8/8] UUID integration tests, benchmarks and docs
xiangfu0 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
...ommon/src/main/java/org/apache/pinot/common/partition/function/UuidPartitionFunction.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,78 @@ | ||
| /** | ||
| * 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.pinot.common.partition.function; | ||
|
|
||
| import com.google.common.base.Preconditions; | ||
| import java.util.Map; | ||
| import javax.annotation.Nullable; | ||
| import org.apache.pinot.segment.spi.partition.PartitionFunction; | ||
| import org.apache.pinot.segment.spi.partition.PartitionIdNormalizer; | ||
| import org.apache.pinot.spi.utils.UuidUtils; | ||
| import org.apache.pinot.spi.utils.hash.MurmurHashFunctions; | ||
|
|
||
|
|
||
| /// Partition function for Pinot's logical UUID type. Parses the canonical RFC 4122 UUID string into its | ||
| /// 16-byte binary form, hashes those bytes via Murmur2, and runs the configured [PartitionIdNormalizer] | ||
| /// (default [PartitionIdNormalizer#MASK]) to derive the partition id. | ||
| /// | ||
| /// This matches what an external producer that hashes the 16-byte UUID via Murmur2 would compute (the | ||
| /// most common convention for UUID-keyed messages in Kafka/Pulsar/Kinesis). | ||
| /// | ||
| /// Hashing the binary form avoids two pitfalls of hashing the canonical UUID string directly: the dashes | ||
| /// do not contribute entropy, and producers that emit raw UUID bytes on the wire would otherwise need a | ||
| /// Pinot-only canonical-format step in their partitioning code. | ||
| public class UuidPartitionFunction implements PartitionFunction { | ||
| private static final String NAME = "Uuid"; | ||
| private static final PartitionIdNormalizer DEFAULT_NORMALIZER = PartitionIdNormalizer.MASK; | ||
| private final int _numPartitions; | ||
| private final PartitionIdNormalizer _normalizer; | ||
|
|
||
| public UuidPartitionFunction(int numPartitions, @Nullable Map<String, String> functionConfig) { | ||
| Preconditions.checkArgument(numPartitions > 0, "Number of partitions must be > 0, was: %s", numPartitions); | ||
| _numPartitions = numPartitions; | ||
| _normalizer = PartitionFunctionConfigs.normalizer(functionConfig, DEFAULT_NORMALIZER); | ||
| } | ||
|
|
||
| @Override | ||
| public int getPartition(String value) { | ||
| byte[] uuidBytes = UuidUtils.toBytes(value); | ||
| return _normalizer.getPartitionId(MurmurHashFunctions.murmurHash2(uuidBytes), _numPartitions); | ||
| } | ||
|
|
||
| @Override | ||
| public String getName() { | ||
| return NAME; | ||
| } | ||
|
|
||
| @Override | ||
| public int getNumPartitions() { | ||
| return _numPartitions; | ||
| } | ||
|
|
||
| @Override | ||
| public PartitionIdNormalizer getPartitionIdNormalizer() { | ||
| return _normalizer; | ||
| } | ||
|
|
||
| // Keep it for backward-compatibility, use getName() instead | ||
| @Override | ||
| public String toString() { | ||
| return NAME; | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This introduces new
UUID/UUID_ARRAYproto enum values with no compatibility path for older MSQ peers. Older brokers/servers decode them asUNRECOGNIZEDand throw inconvertColumnDataType(...), so a UUID literal can break mixed-version planning before execution even starts. Please encode UUID literals using an existing wire type until the cluster is homogeneous, or add version-gated dual-read/dual-write behavior with mixed-version tests.