This is an automated email from the ASF dual-hosted git repository.
xiangfu0 pushed a change to branch xiangfu0/codex/codec-stack/06-reload-enable
in repository https://gitbox.apache.org/repos/asf/pinot.git
omit cd49c10b98a Harden codec reload and compression stats
omit f532b1ddfd1 Support codecSpec on segment reload and enable codecSpec
end to end
omit 7ca222e5bc7 Add V7 raw forward index format for codec pipelines
omit bfce92f2e08 Use caller-owned buffers for codec pipelines
add 220b5a30821 Bump com.github.luben:zstd-jni from 1.5.7-15 to 1.5.7-16
(#19432)
add 46a07c77cfd Support null handling in dictionary-based and multi-value
group key generation (#19390)
add f0ee07447a5 Add review guidance for focused, consistent changes
(#19436)
add d3e53e20210 Implement streaming distinct leaf stage operator for
multi-stage engine (#19419)
add a13a7ce49ab Fix group key generation when
optimizeMaxInitialResultHolderCapacity shrinks the cardinality product (#19379)
add 2e9f31bdfed Add CombinePlanNode extension points for substituting
combine operators (#19438)
add 2c313412f1c Gate preprocess() on needPreprocess() in cold-download and
consuming segment callers (#19394)
add d08ac91365f Match the Spark ingestion plugin name to the directory it
ships in (#19442)
add fcdd8d6bcd2 Use caller-owned buffers for codec pipelines
add 7a6cba4ae47 Add V7 raw forward index format for codec pipelines
add 5fa3b6a1dc5 Support codecSpec on segment reload and enable codecSpec
end to end
add 95412fff30c Harden codec reload and compression stats
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 (cd49c10b98a)
\
N -- N -- N
refs/heads/xiangfu0/codex/codec-stack/06-reload-enable (95412fff30c)
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:
AGENTS.md | 4 +
kb/agents/code-reviewer.md | 3 +
kb/code-review-principles.md | 67 +-
kb/skills/review-naming-api.md | 3 +
.../MultiStageBrokerRequestHandler.java | 11 +
.../MultiStageBrokerRequestHandlerTest.java | 58 +
.../common/utils/config/QueryOptionsUtils.java | 6 +
.../common/utils/config/QueryOptionsUtilsTest.java | 7 +-
.../StreamingDistinctCombineOperator.java | 193 +++
.../apache/pinot/core/plan/CombinePlanNode.java | 133 +-
.../core/plan/maker/InstancePlanMakerImplV2.java | 10 +
.../groupby/DefaultGroupByExecutor.java | 47 +-
.../groupby/DictionaryBasedGroupKeyGenerator.java | 205 ++-
.../groupby/GroupingSetsGroupKeyGenerator.java | 17 +
.../NoDictionaryMultiColumnGroupKeyGenerator.java | 212 ++-
.../NoDictionarySingleColumnGroupKeyGenerator.java | 222 ++--
.../core/query/request/context/QueryContext.java | 10 +
.../StreamingDistinctCombineOperatorTest.java | 649 ++++++++++
.../DictionaryBasedGroupKeyGeneratorTest.java | 276 +++-
.../queries/NullHandlingEnabledQueriesTest.java | 1370 +++++++++++---------
.../tests/MultiStageEngineIntegrationTest.java | 84 ++
.../immutable/ImmutableSegmentLoader.java | 21 +-
.../local/io/codec/BaseDeltaCodecDefinition.java | 2 +-
.../segment/local/io/codec/ChunkCodecHandler.java | 4 +-
.../local/io/codec/CodecPipelineExecutor.java | 155 +--
.../local/io/codec/GorillaCodecDefinition.java | 2 +-
.../local/io/codec/GzipCodecDefinition.java | 2 +-
.../segment/local/io/codec/Lz4CodecDefinition.java | 2 +-
.../local/io/codec/SnappyCodecDefinition.java | 2 +-
.../segment/local/io/codec/T64CodecDefinition.java | 2 +-
.../local/io/codec/ZstdCodecDefinition.java | 2 +-
.../local/io/codec/ChunkCodecHandlerTest.java | 2 +-
.../local/io/codec/CodecPipelineExecutorTest.java | 123 +-
.../local/io/codec/CodecPipelineValidatorTest.java | 2 +-
.../segment/local/io/codec/CodecRegistryTest.java | 2 +-
.../segment/local/io/codec/CodecTestUtils.java | 4 +-
.../apache/pinot/spi/utils/CommonConstants.java | 32 +
.../LaunchSparkDataIngestionJobCommand.java | 7 +-
.../LaunchSparkDataIngestionJobCommandTest.java | 62 +
pom.xml | 2 +-
40 files changed, 2762 insertions(+), 1255 deletions(-)
create mode 100644
pinot-core/src/main/java/org/apache/pinot/core/operator/streaming/StreamingDistinctCombineOperator.java
create mode 100644
pinot-core/src/test/java/org/apache/pinot/core/operator/streaming/StreamingDistinctCombineOperatorTest.java
create mode 100644
pinot-tools/src/test/java/org/apache/pinot/tools/admin/command/LaunchSparkDataIngestionJobCommandTest.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]