This is an automated email from the ASF dual-hosted git repository.
xiangfu0 pushed a change to branch xiangfu0/codex/codec-stack/05-v7-format
in repository https://gitbox.apache.org/repos/asf/pinot.git
omit 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 d7c1f89efb0 Add V7 raw forward index format for codec pipelines
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 (4a138bca8e5)
\
N -- N -- N refs/heads/xiangfu0/codex/codec-stack/05-v7-format
(d7c1f89efb0)
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 +---
.../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 | 136 +++++++-
.../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 +-
34 files changed, 1167 insertions(+), 845 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]