This is an automated email from the ASF dual-hosted git repository.
xiangfu0 pushed a change to branch xiangfu0/codex/codec-stack/03-delta-codecs
in repository https://gitbox.apache.org/repos/asf/pinot.git
omit 7aa46f486b0 Add DELTA and DELTADELTA transform codecs
omit d4f9863645f Merge codec-stack/01-config (master sync) into
codec-stack/02-runtime
omit 613c304accf Merge master into codec-stack/01-config to pick up the
delta chunk caching fix (#19282)
omit bfe108c3d9d Harden Snappy decode bounds, reserve CODEC in the
registry, reject ZSTD(0)
omit 7c84385c75e Add bounded codec runtime and compression handlers
omit e00e837b5cb Reject leading-zero codec arguments and tighten the spec
length cap
omit ad52533ff62 Add codec spec DSL and configuration plumbing
add 2482813c3ee Skip stream consumer recreation when consumption is being
stopped (#19296)
add 739e6a90d78 Support multi-value columns in DISTINCTCOUNTULL and
SEGMENTPARTITIONEDDISTINCTCOUNT (#19302)
add 6bb61cac7d5 remove needReload check in table rebalance (#19295)
add 11c3429ea0a Bump com.github.luben:zstd-jni from 1.5.7-13 to 1.5.7-14
(#19313)
add f5fee8e7023 Use compact primitive storage for star-tree record offsets
in OffHeapSingleTreeBuilder (#19317)
add 375716a9a07 Add codec spec DSL and configuration plumbing
add 1da60292c1c Reject leading-zero codec arguments and tighten the spec
length cap
add 4e20bcc6b42 Pin codec DSL equality and limit symmetry with tests
add b34537f3198 Document why the codec DSL is not parsed by the SQL
expression parser
add 4cd62f6dda3 Add bounded codec runtime and compression handlers
add 2c642618152 Harden Snappy decode bounds, reserve CODEC in the
registry, reject ZSTD(0)
add 6de5c072ab6 Add DELTA and DELTADELTA transform codecs
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (7aa46f486b0)
\
N -- N -- N
refs/heads/xiangfu0/codex/codec-stack/03-delta-codecs (6de5c072ab6)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../core/rebalance/DefaultRebalancePreChecker.java | 44 ----
.../TableRebalancerClusterStatelessTest.java | 9 +-
.../realtime/RealtimeSegmentDataManager.java | 15 +-
.../DistinctCountBitmapAggregationFunction.java | 6 +-
.../DistinctCountULLAggregationFunction.java | 269 ++++++++++++++++++-
...artitionedDistinctCountAggregationFunction.java | 286 ++++++++++++++++++++-
.../function/SumPrecisionAggregationFunction.java | 12 +-
.../pinot/core/common/SyntheticBlockValSets.java | 216 +++++++++++-----
.../DistinctCountULLAggregationFunctionTest.java | 110 +++++++-
...tionedDistinctCountAggregationFunctionTest.java | 120 +++++++++
.../tests/TableRebalanceIntegrationTest.java | 131 ++--------
.../tests/custom/UuidAggregationTest.java | 11 +-
.../v2/builder/OffHeapSingleTreeBuilder.java | 75 ++++--
.../v2/builder/OffHeapSingleTreeBuilderTest.java | 30 ++-
.../pinot/segment/spi/codec/CodecSpecParser.java | 22 ++
.../segment/spi/codec/CodecInvocationTest.java | 46 ++++
.../pinot/segment/spi/codec/CodecPipelineTest.java | 36 +++
.../segment/spi/codec/CodecSpecParserTest.java | 10 +-
pom.xml | 2 +-
19 files changed, 1144 insertions(+), 306 deletions(-)
create mode 100644
pinot-core/src/test/java/org/apache/pinot/core/query/aggregation/function/SegmentPartitionedDistinctCountAggregationFunctionTest.java
copy
pinot-plugins/pinot-metrics/pinot-yammer/src/test/java/org/apache/pinot/plugin/metrics/yammer/YammerGaugeTest.java
=>
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/startree/v2/builder/OffHeapSingleTreeBuilderTest.java
(55%)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]