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 f31545b18a0 Add codec pipeline integration tests and design doc
discard 36ff38adaf5 Harden codec reload and compression stats
discard 5843bcfb054 Support codecSpec on segment reload and enable codecSpec
end to end
discard fa07c2c37ca Validate V7 reader metadata invariants
discard 8a20ec5e02d Harden V7 codec pipeline I/O
discard 52fd3ae4c56 Add V7 raw forward index format for codec pipelines
discard 3129e004590 Pin packing codec wire byte order
discard ad27288eb6c Harden packing codec frames and allocations
discard e24dce3763e Add T64 and GORILLA packing transform codecs
discard 489c6aeceb5 Make delta wire decoding byte-order independent
discard c1023f7ad91 Add stable delta codec decode fixtures
discard dfbc189c6dd Add DELTA and DELTADELTA transform codecs
omit d52dd4751f0 Address codec runtime review feedback
omit c13ad2b24c3 Harden Snappy decode bounds, reserve CODEC in the
registry, reject ZSTD(0)
omit 28dbb9eb655 Add bounded codec runtime and compression handlers
add 3a206ff466e Bump com.github.jnr:jnr-ffi from 2.3.0 to 2.3.1 (#19340)
add 7c14fd3f9a4 Bump software.amazon.awssdk:bom from 2.53.2 to 2.54.1
(#19341)
add 9990b65801d Bump protobuf.version from 4.35.1 to 4.36.0 (#19342)
add be177d3d3c1 Bump org.codehaus.plexus:plexus-classworlds from 2.12.0 to
2.12.1 (#19343)
add 5338fbf64ec Bump org.codehaus.plexus:plexus-utils from 4.0.3 to 4.1.0
(#19344)
add a696135fe00 Bump org.codehaus.plexus:plexus-xml from 3.0.2 to 3.1.0
(#19346)
add e96a87827ce Bump org.webjars:swagger-ui from 5.32.13 to 5.32.14
(#19347)
add 7b6acd3d590 Bump com.github.jnr:jnr-posix from 3.2.1 to 3.2.2 (#19348)
add 396e7211280 Add per-key segment build observability for OPEN_STRUCT
columns (PR 4/4) (#19041)
add 79914387d95 Upgrade checkstyle from 10.26.1 to 14.0.0 (#19351)
add 4f7023a564a Wait for external view convergence before the single
validation run in pauseless ingestion tests (#19354)
add 1961c00df31 Add SQL input sanitization utilities (#19352)
add 4824a5fd1f7 Add bounded codec runtime and compression handlers (#19285)
add b81db7680fb Add DELTA and DELTADELTA transform codecs
add 8eecfc9e67b Add T64 and GORILLA packing transform codecs
add a7e3c268735 Add V7 raw forward index format for codec pipelines
add 4f2a8e7d7cc Harden V7 codec pipeline I/O
add 74c773d736d Validate V7 reader metadata invariants
add b7ec7b513c5 Support codecSpec on segment reload and enable codecSpec
end to end
add 8c51bcecb89 Harden codec reload and compression stats
add 17259a110e0 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 (f31545b18a0)
\
N -- N -- N
refs/heads/xiangfu0/codex/codec-stack/07-integration-docs (17259a110e0)
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:
config/checkstyle.xml | 7 -
.../jmx_prometheus_javaagent/configs/server.yml | 34 +++
.../apache/pinot/common/metrics/ServerGauge.java | 20 +-
.../apache/pinot/common/metrics/ServerMeter.java | 7 +-
.../org/apache/pinot/sql/parsers/ParserUtils.java | 197 ++++++++++++++
.../prometheus/PrometheusTemplateRegexpTest.java | 158 ++++++++++-
.../prometheus/ServerPrometheusMetricsTest.java | 49 ++++
.../apache/pinot/sql/parsers/ParserUtilsTest.java | 144 ++++++++++
.../tests/BasePauselessRealtimeIngestionTest.java | 6 +
.../realtime/utils/PauselessRealtimeTestUtils.java | 25 ++
.../compound/CompoundPinotMetricsFactory.java | 30 +--
.../indexsegment/mutable/MutableSegmentImpl.java | 3 +-
.../segment/local/io/codec/CodecBufferUtils.java | 6 +-
.../pinot/segment/local/io/codec/CodecContext.java | 3 +-
.../local/io/codec/CodecPipelineExecutor.java | 2 +-
.../local/io/codec/ZstdCodecDefinition.java | 6 +-
.../impl/openstruct/OpenStructColumnSplitter.java | 113 ++++++--
.../index/openstruct/MutableOpenStructIndex.java | 60 +++--
.../index/openstruct/OpenStructIndexType.java | 3 +-
.../io/codec/CompressionCodecCorruptInputTest.java | 20 ++
.../openstruct/OpenStructColumnSplitterTest.java | 296 +++++++++++++++++++--
.../MutableOpenStructDataSourceTest.java | 34 +--
.../openstruct/MutableOpenStructIndexTest.java | 72 ++++-
.../OpenStructConsumingSealedParityTest.java | 78 +++++-
.../helix/SegmentMessageHandlerFactory.java | 54 ++++
.../helix/SegmentMessageHandlerFactoryTest.java | 188 +++++++++++++
.../spi/config/table/OpenStructIndexConfig.java | 24 +-
.../apache/pinot/spi/data/OpenStructNaming.java | 20 ++
.../config/table/OpenStructIndexConfigTest.java | 22 ++
.../pinot/spi/data/OpenStructNamingTest.java | 64 +++++
pom.xml | 18 +-
31 files changed, 1622 insertions(+), 141 deletions(-)
create mode 100644
pinot-server/src/test/java/org/apache/pinot/server/starter/helix/SegmentMessageHandlerFactoryTest.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]