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 4ed1bd6bcb9 Add codec pipeline integration tests and design doc
discard d0afba2938b Harden codec reload and compression stats
discard 3b4c44251f3 Support codecSpec on segment reload and enable codecSpec
end to end
discard 00bceb008d1 Add V7 raw forward index format for codec pipelines
add 6e92426ef75 Report idle workers and the slowest worker's clock time in
MSE stage stats (#19364)
add dc2dfb3cdaa Bump software.amazon.awssdk:bom from 2.54.2 to 2.54.3
(#19381)
add 19180414fdb Bump com.google.cloud:libraries-bom from 26.86.0 to
26.87.0 (#19382)
add 30599565d86 Use a daemon thread for ZooKeeper disconnects (#19387)
add 1a6bb35365b Honor tier overwrites in
IndexLoadingConfig.isSkipSegmentPreprocess (#19391)
add f799d9075db Surface recorded scheduling errors when
assertNoTaskSchedule fails on null task names (#19389)
add bd69e76f14e Fix checkTableSetup table-size flake by polling until the
size converges (#19392)
add bbbed251444 [broker] Honor skipUnavailableServers on mid-query server
channel-inactive (#19064)
add 175ac1ade40 Add V7 raw forward index format for codec pipelines
add 18545c8464e Support codecSpec on segment reload and enable codecSpec
end to end
add 514b647ed08 Harden codec reload and compression stats
add 11106def802 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 (4ed1bd6bcb9)
\
N -- N -- N
refs/heads/xiangfu0/codex/codec-stack/07-integration-docs (11106def802)
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:
.../SingleConnectionBrokerRequestHandler.java | 4 +
.../apache/pinot/common/metrics/BrokerMeter.java | 15 ++
.../org/apache/pinot/common/utils/ZkStarter.java | 2 +-
.../apache/pinot/common/utils/ZkStarterTest.java | 51 ++++++
.../core/query/request/ServerQueryRequest.java | 23 +++
.../pinot/core/transport/AsyncQueryResponse.java | 62 +++++--
.../pinot/core/transport/DataTableHandler.java | 8 +-
.../pinot/core/transport/DirectOOMHandler.java | 2 +-
.../apache/pinot/core/transport/QueryResponse.java | 6 +-
.../apache/pinot/core/transport/QueryRouter.java | 22 ++-
.../pinot/core/transport/ServerChannels.java | 6 +-
.../core/query/request/ServerQueryRequestTest.java | 91 ++++++++++
.../core/transport/AsyncQueryResponseTest.java | 123 +++++++++++++
.../pinot/core/transport/QueryRoutingTest.java | 191 +++++++++++++++++++++
.../pinot/core/transport/ServerChannelsTest.java | 5 +-
.../integration/tests/MinionTaskTestUtils.java | 4 +-
.../tests/OfflineClusterIntegrationTest.java | 14 +-
.../pinot/query/runtime/SendStatsPredicate.java | 9 +-
.../operator/BaseMailboxReceiveOperator.java | 27 ++-
.../pinot/query/runtime/operator/LeafOperator.java | 32 +++-
.../runtime/operator/MailboxSendOperator.java | 62 ++++++-
.../query/runtime/operator/MultiStageOperator.java | 6 +
.../query/runtime/operator/LeafOperatorTest.java | 45 +++++
.../operator/MailboxReceiveOperatorTest.java | 35 ++++
.../runtime/operator/MailboxSendOperatorTest.java | 146 +++++++++++++++-
.../query/runtime/queries/QueryRunnerTest.java | 129 ++++++++++++++
.../segment/index/loader/IndexLoadingConfig.java | 7 +-
.../index/loader/IndexLoadingConfigTest.java | 31 ++++
.../apache/pinot/spi/utils/CommonConstants.java | 5 +-
pom.xml | 4 +-
30 files changed, 1123 insertions(+), 44 deletions(-)
create mode 100644
pinot-common/src/test/java/org/apache/pinot/common/utils/ZkStarterTest.java
create mode 100644
pinot-core/src/test/java/org/apache/pinot/core/query/request/ServerQueryRequestTest.java
create mode 100644
pinot-core/src/test/java/org/apache/pinot/core/transport/AsyncQueryResponseTest.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]