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 284f30bf1ff Harden codec reload and compression stats
omit 4c55f816bab Support codecSpec on segment reload and enable codecSpec
end to end
omit 952e05e1af3 Add V7 raw forward index format for codec pipelines
omit 9fc595c09f5 Use caller-owned buffers for codec pipelines
add 91b9f06d478 [multistage] Add gRPC keep-alive to the MSE mailbox
channels (#19383)
add 3690982cc40 Bump org.apache.fory:fory-json from 1.6.1 to 1.7.0 (#19406)
add 782ed13c2d9 Bump software.amazon.awssdk:bom from 2.54.3 to 2.54.6
(#19405)
add 3ec89879db9 Bump io.github.hakky54:ayza-bom from 10.0.6 to 10.0.7
(#19404)
add ca78b00d4ae Bump org.jline:jline from 4.3.1 to 4.4.0 (#19403)
add 2af1b09708a Update collaborators list in .asf.yaml (#19413)
add 2f89dab09e7 Don't use the streaming group-by leaf when the server must
return final results (#19417)
add f7342013094 Run SPI-registered validators from /tables/validate
preflight (#19420)
add 88ea694bae5 [#12507] Implement adaptive pool selection for
StrictReplicaGroupInstanceSelector (#18947)
add 1ce44658f54 Use caller-owned buffers for codec pipelines
add 2c58022c5c3 Add V7 raw forward index format for codec pipelines
add 6bf3dfe7bed Support codecSpec on segment reload and enable codecSpec
end to end
add 2a2082dfad4 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 (284f30bf1ff)
\
N -- N -- N
refs/heads/xiangfu0/codex/codec-stack/06-reload-enable (2a2082dfad4)
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:
.asf.yaml | 16 +-
.../instanceselector/BalancedInstanceSelector.java | 5 +-
.../instanceselector/BaseInstanceSelector.java | 24 +-
.../routing/instanceselector/InstanceSelector.java | 22 +-
.../instanceselector/InstanceSelectorFactory.java | 23 +-
.../MultiStageReplicaGroupSelector.java | 14 +-
.../ReplicaGroupInstanceSelector.java | 39 +-
.../instanceselector/SegmentInstanceCandidate.java | 2 +-
.../StrictReplicaGroupInstanceSelector.java | 62 +-
.../routing/manager/BaseBrokerRoutingManager.java | 6 +-
.../instanceselector/InstanceSelectorTest.java | 90 +-
.../instanceselector/ReplicaGroupSelectorTest.java | 1063 ++++++++++++++++++++
.../api/resources/PinotTableRestletResource.java | 5 +-
.../resources/PinotTableRestletResourceTest.java | 47 +
.../streaming/StreamingGroupByCombineOperator.java | 8 +
.../apache/pinot/core/plan/CombinePlanNode.java | 10 +-
.../StreamingGroupByCombineOperatorTest.java | 43 +
.../pinot/query/grpc/GrpcKeepAliveConfig.java | 103 ++
.../apache/pinot/query/mailbox/MailboxService.java | 15 +-
.../query/mailbox/channel/ChannelManager.java | 54 +-
.../query/mailbox/channel/GrpcMailboxServer.java | 32 +-
.../query/service/dispatch/DispatchClient.java | 52 +-
.../query/service/dispatch/QueryDispatcher.java | 9 +-
.../pinot/query/grpc/GrpcKeepAliveConfigTest.java | 119 +++
.../mailbox/MailboxServiceKeepAliveWiringTest.java | 82 ++
.../query/mailbox/channel/ChannelManagerTest.java | 48 +-
.../channel/MailboxChannelKeepAliveTest.java | 291 ++++++
.../MailboxServerPermitKeepAliveBehaviorTest.java | 146 +++
.../channel/MailboxServerPermitKeepAliveTest.java | 77 ++
.../local/io/codec/BaseDeltaCodecDefinition.java | 7 +-
.../segment/local/io/codec/ChunkCodecHandler.java | 15 +-
.../local/io/codec/CodecPipelineExecutor.java | 276 ++---
.../local/io/codec/DeltaCodecDefinition.java | 48 +-
.../local/io/codec/DeltaDeltaCodecDefinition.java | 94 +-
.../local/io/codec/GorillaCodecDefinition.java | 8 +-
.../local/io/codec/GzipCodecDefinition.java | 6 +-
.../segment/local/io/codec/Lz4CodecDefinition.java | 2 +-
.../local/io/codec/SnappyCodecDefinition.java | 2 +-
.../segment/local/io/codec/T64CodecDefinition.java | 85 +-
.../local/io/codec/ZstdCodecDefinition.java | 2 +-
.../local/io/codec/ChunkCodecHandlerTest.java | 8 +-
.../local/io/codec/CodecPipelineExecutorTest.java | 149 ++-
.../local/io/codec/CodecPipelineValidatorTest.java | 2 +-
.../segment/local/io/codec/CodecRegistryTest.java | 2 +-
.../io/codec/CompressionCodecCorruptInputTest.java | 4 +-
.../local/io/codec/GorillaCodecDefinitionTest.java | 4 +-
.../local/io/codec/T64CodecDefinitionTest.java | 19 +-
.../local/io/codec/ZstdCodecDefinitionTest.java | 2 +-
.../apache/pinot/spi/utils/CommonConstants.java | 69 ++
pom.xml | 10 +-
50 files changed, 2844 insertions(+), 477 deletions(-)
create mode 100644
pinot-broker/src/test/java/org/apache/pinot/broker/routing/instanceselector/ReplicaGroupSelectorTest.java
create mode 100644
pinot-query-runtime/src/main/java/org/apache/pinot/query/grpc/GrpcKeepAliveConfig.java
create mode 100644
pinot-query-runtime/src/test/java/org/apache/pinot/query/grpc/GrpcKeepAliveConfigTest.java
create mode 100644
pinot-query-runtime/src/test/java/org/apache/pinot/query/mailbox/MailboxServiceKeepAliveWiringTest.java
create mode 100644
pinot-query-runtime/src/test/java/org/apache/pinot/query/mailbox/channel/MailboxChannelKeepAliveTest.java
create mode 100644
pinot-query-runtime/src/test/java/org/apache/pinot/query/mailbox/channel/MailboxServerPermitKeepAliveBehaviorTest.java
create mode 100644
pinot-query-runtime/src/test/java/org/apache/pinot/query/mailbox/channel/MailboxServerPermitKeepAliveTest.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]