This is an automated email from the ASF dual-hosted git repository.
xiangfu0 pushed a change to branch
xiangfu0/codex/codec-stack/07-integration-docs
in repository https://gitbox.apache.org/repos/asf/pinot.git
discard c4c94f6684e Add codec pipeline integration tests and design doc
discard 87e4aeeca50 Harden codec reload and compression stats
discard 2b2b036de7a Support codecSpec on segment reload and enable codecSpec
end to end
discard 4a138bca8e5 Add V7 raw forward index format for codec pipelines
add 8ade0f15822 Leave tenant isolation unset in the generated controller
config (#19393)
add 80dbb7d02df Read MAP keys selectively from sealed forward indexes
(#19273)
add 9fc595c09f5 Use caller-owned buffers for codec pipelines
add 952e05e1af3 Add V7 raw forward index format for codec pipelines
add 4c55f816bab Support codecSpec on segment reload and enable codecSpec
end to end
add 284f30bf1ff Harden codec reload and compression stats
add ab2e0c7c700 Add codec pipeline integration tests and design doc
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 (c4c94f6684e)
\
N -- N -- N
refs/heads/xiangfu0/codex/codec-stack/07-integration-docs (ab2e0c7c700)
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:
.../custom/RawForwardIndexWithDictionaryTest.java | 39 ++-
.../apache/pinot/perf/BenchmarkMapKeyAccess.java | 61 +++-
.../local/io/codec/BaseDeltaCodecDefinition.java | 37 +-
.../segment/local/io/codec/ChunkCodecHandler.java | 76 ++---
.../segment/local/io/codec/CodecBufferUtils.java | 5 -
.../local/io/codec/CodecPipelineExecutor.java | 156 ++-------
.../local/io/codec/DeltaCodecDefinition.java | 28 --
.../local/io/codec/DeltaDeltaCodecDefinition.java | 40 ---
.../local/io/codec/GorillaCodecDefinition.java | 46 +--
.../local/io/codec/GzipCodecDefinition.java | 36 +-
.../segment/local/io/codec/Lz4CodecDefinition.java | 48 +--
.../local/io/codec/SnappyCodecDefinition.java | 53 +--
.../segment/local/io/codec/T64CodecDefinition.java | 71 +---
.../local/io/codec/ZstdCodecDefinition.java | 56 +---
.../impl/FixedByteChunkForwardIndexWriterV7.java | 14 -
.../local/io/writer/impl/FixedByteChunkWriter.java | 6 -
.../fwd/SingleValueFixedByteRawIndexCreator.java | 10 +-
.../forward/VarByteChunkForwardIndexReaderV4.java | 14 +
.../forward/VarByteChunkSVForwardIndexReader.java | 13 +
.../local/io/codec/ChunkCodecHandlerTest.java | 222 ++++++++++++
.../local/io/codec/CodecPipelineExecutorTest.java | 373 ++++++++++++++++-----
.../local/io/codec/CodecPipelineValidatorTest.java | 9 +-
.../segment/local/io/codec/CodecRegistryTest.java | 10 +-
.../segment/local/io/codec/CodecTestUtils.java | 48 +++
.../io/codec/CompressionCodecCorruptInputTest.java | 67 ++--
.../local/io/codec/DeltaCodecRoundTripTest.java | 36 +-
.../local/io/codec/GorillaCodecDefinitionTest.java | 58 ++--
.../local/io/codec/T64CodecDefinitionTest.java | 76 +++--
.../local/io/codec/ZstdCodecDefinitionTest.java | 8 +-
.../segment/index/creator/VarByteChunkV4Test.java | 61 ++++
.../forward/ForwardIndexCreatorFactoryTest.java | 193 ++++++++++-
.../forward/VarByteChunkSVForwardIndexTest.java | 78 +++++
.../segment/local/utils/TableConfigUtilsTest.java | 8 +-
.../admin/command/StartControllerCommand.java | 11 +-
.../admin/command/StartServiceManagerCommand.java | 3 +-
.../apache/pinot/tools/utils/PinotConfigUtils.java | 14 +-
.../pinot/tools/utils/PinotConfigUtilsTest.java | 15 +-
37 files changed, 1232 insertions(+), 867 deletions(-)
create mode 100644
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/io/codec/ChunkCodecHandlerTest.java
create mode 100644
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/io/codec/CodecTestUtils.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]