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 11106def802 Add codec pipeline integration tests and design doc
 discard 514b647ed08 Harden codec reload and compression stats
 discard 18545c8464e Support codecSpec on segment reload and enable codecSpec 
end to end
 discard 175ac1ade40 Add V7 raw forward index format for codec pipelines
     add 4a138bca8e5 Add V7 raw forward index format for codec pipelines
     add 2b2b036de7a Support codecSpec on segment reload and enable codecSpec 
end to end
     add 87e4aeeca50 Harden codec reload and compression stats
     add c4c94f6684e 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   (11106def802)
            \
             N -- N -- N   
refs/heads/xiangfu0/codex/codec-stack/07-integration-docs (c4c94f6684e)

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:
 .../tests/custom/CodecPipelineIntegrationTest.java |   4 +-
 .../CodecPipelineRealtimeIntegrationTest.java      |  19 +-
 .../local/io/codec/BaseDeltaCodecDefinition.java   |  35 +-
 .../segment/local/io/codec/ChunkCodecHandler.java  |  30 ++
 .../local/io/codec/CodecPipelineExecutor.java      | 292 ++++++++++-
 .../local/io/codec/DeltaCodecDefinition.java       |  26 +-
 .../local/io/codec/DeltaDeltaCodecDefinition.java  |  36 +-
 .../local/io/codec/GorillaCodecDefinition.java     |  44 +-
 .../local/io/codec/GzipCodecDefinition.java        |  44 +-
 .../segment/local/io/codec/Lz4CodecDefinition.java |  32 +-
 .../local/io/codec/SnappyCodecDefinition.java      |  31 +-
 .../segment/local/io/codec/T64CodecDefinition.java |  75 ++-
 .../local/io/codec/ZstdCodecDefinition.java        |  36 +-
 .../impl/FixedByteChunkForwardIndexWriter.java     |   6 +-
 .../impl/FixedByteChunkForwardIndexWriterV7.java   |  28 +-
 ...eValueWriter.java => FixedByteChunkWriter.java} |   2 +-
 .../fwd/SingleValueFixedByteRawIndexCreator.java   |   6 +-
 .../segment/index/forward/ForwardIndexType.java    |   8 +-
 .../segment/index/loader/ForwardIndexHandler.java  |  38 +-
 .../loader/invertedindex/TextIndexHandler.java     |   2 +-
 .../index/readers/forward/ChunkReaderContext.java  |  16 -
 .../FixedByteChunkSVForwardIndexReaderV7.java      | 111 +++-
 .../local/io/codec/CodecPipelineExecutorTest.java  |  66 ++-
 .../forward/CodecPipelineForwardIndexTest.java     | 569 ---------------------
 ...eChunkSVForwardIndexReaderV7CorruptionTest.java | 301 -----------
 ...dByteChunkSVForwardIndexReaderV7GoldenTest.java |  95 ----
 .../forward/ForwardIndexCreatorFactoryTest.java    | 112 ++--
 ...orwardIndexReaderFactoryBackwardCompatTest.java | 188 -------
 .../forward/ForwardIndexReaderFactoryTest.java     |  87 ----
 .../ForwardIndexHandlerCompressionStatsTest.java   |   2 +-
 .../index/loader/ForwardIndexHandlerTest.java      |  62 ++-
 .../readers/forward/ChunkReaderContextTest.java    |  40 --
 .../segment/local/utils/TableConfigUtilsTest.java  |  23 +-
 .../segment/spi/index/ForwardIndexConfig.java      |   9 -
 .../spi/index/reader/ForwardIndexReader.java       |  11 -
 35 files changed, 863 insertions(+), 1623 deletions(-)
 rename 
pinot-segment-local/src/main/java/org/apache/pinot/segment/local/io/writer/impl/{FixedByteValueWriter.java
 => FixedByteChunkWriter.java} (97%)
 delete mode 100644 
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/segment/index/forward/CodecPipelineForwardIndexTest.java
 delete mode 100644 
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/segment/index/forward/FixedByteChunkSVForwardIndexReaderV7CorruptionTest.java
 delete mode 100644 
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/segment/index/forward/FixedByteChunkSVForwardIndexReaderV7GoldenTest.java
 delete mode 100644 
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/segment/index/forward/ForwardIndexReaderFactoryBackwardCompatTest.java
 delete mode 100644 
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/segment/index/forward/ForwardIndexReaderFactoryTest.java
 delete mode 100644 
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/segment/index/readers/forward/ChunkReaderContextTest.java


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to