This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/maven/org.webjars-swagger-ui-5.32.6
in repository https://gitbox.apache.org/repos/asf/pinot.git
discard fcd6e614f0b Bump org.webjars:swagger-ui from 5.32.5 to 5.32.6
add 887dd4d118d feat(array): add arraySliceLong scalar function (#18591)
add 56438382353 Avoid mmap during predownload local segment check to
reduce page faults (#18467)
add f00dc04af11 [multistage] Sender-side gRPC back-pressure for mailbox +
MAILBOX_CLIENT_USED_* gauges (#18519)
add 0e95355afed Fix compatibility regression testing (#18597)
add 9474069ebeb Revert "Fix UnsupportedOperationException in
SVScanDocIdIterator for RAW forward index + separate dictionary (#18579)"
(#18590)
add c2561d4c63e Include OFFSET in physical optimizer group-trim limit
pushdown (#18600)
add 8a0253dc03a Bump org.webjars:swagger-ui from 5.32.5 to 5.32.6
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 (fcd6e614f0b)
\
N -- N -- N
refs/heads/dependabot/maven/org.webjars-swagger-ui-5.32.6 (8a0253dc03a)
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:
.github/workflows/pinot_compatibility_checks.yml | 16 +-
.github/workflows/pinot_compatibility_tests.yml | 7 +-
...ulti_stage_query_engine_compatibility_tests.yml | 7 +-
.../scripts/.pinot_compatibility_verifier.sh | 25 +-
compatibility-verifier/checkoutAndBuild.sh | 49 ++-
.../common/function/scalar/ArrayFunctions.java | 5 +
.../apache/pinot/common/metrics/BrokerGauge.java | 4 +
.../apache/pinot/common/metrics/ServerGauge.java | 4 +
.../dociditerators/SVScanDocIdIterator.java | 115 +------
.../core/data/function/ArrayFunctionsTest.java | 4 +
.../dociditerators/SVScanDocIdIteratorTest.java | 130 -------
.../ScalarTransformFunctionWrapperTest.java | 16 +
.../pinot/integration/tests/custom/ArrayTest.java | 17 +
.../tests/custom/GroupByOptionsTest.java | 48 +++
.../resources/udf-test-results/all-functions.yaml | 4 +
.../pinot/perf/BenchmarkGrpcMailboxSend.java | 263 ++++++++++++++
.../rel/rules/PinotLogicalAggregateRule.java | 32 +-
.../resources/queries/PhysicalOptimizerPlans.json | 35 ++
.../pinot/query/mailbox/GrpcSendingMailbox.java | 376 +++++++++++++++++++--
.../apache/pinot/query/mailbox/MailboxService.java | 101 +++++-
.../query/mailbox/channel/ChannelManager.java | 38 ++-
.../query/mailbox/channel/GrpcMailboxServer.java | 68 +++-
.../mailbox/channel/MailboxContentObserver.java | 19 +-
.../mailbox/GrpcSenderBackpressureOffPathTest.java | 187 ++++++++++
.../query/mailbox/GrpcSenderBackpressureTest.java | 251 ++++++++++++++
.../GrpcSenderBackpressureTightGateTest.java | 220 ++++++++++++
.../query/mailbox/GrpcSendingMailboxTest.java | 230 ++++++++++++-
.../query/mailbox/channel/ChannelManagerTest.java | 35 +-
.../channel/GrpcMailboxServerValidationTest.java | 71 ++++
.../channel/MailboxContentObserverTest.java | 60 +++-
.../server/predownload/PredownloadSegmentInfo.java | 36 +-
.../server/predownload/PredownloadTableInfo.java | 77 ++---
.../predownload/PredownloadSchedulerTest.java | 37 +-
.../predownload/PredownloadSegmentInfoTest.java | 58 ++++
.../predownload/PredownloadTableInfoTest.java | 90 ++---
.../apache/pinot/spi/utils/CommonConstants.java | 133 ++++++++
36 files changed, 2436 insertions(+), 432 deletions(-)
delete mode 100644
pinot-core/src/test/java/org/apache/pinot/core/operator/dociditerators/SVScanDocIdIteratorTest.java
create mode 100644
pinot-perf/src/main/java/org/apache/pinot/perf/BenchmarkGrpcMailboxSend.java
create mode 100644
pinot-query-runtime/src/test/java/org/apache/pinot/query/mailbox/GrpcSenderBackpressureOffPathTest.java
create mode 100644
pinot-query-runtime/src/test/java/org/apache/pinot/query/mailbox/GrpcSenderBackpressureTest.java
create mode 100644
pinot-query-runtime/src/test/java/org/apache/pinot/query/mailbox/GrpcSenderBackpressureTightGateTest.java
create mode 100644
pinot-query-runtime/src/test/java/org/apache/pinot/query/mailbox/channel/GrpcMailboxServerValidationTest.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]