This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.jdom-jdom2-2.0.6.1 in repository https://gitbox.apache.org/repos/asf/pinot.git
omit f3aa0121a2 Bump org.jdom:jdom2 from 2.0.6 to 2.0.6.1 add 683c46af19 Table Rebalance: Add support for server-level segment batching (#15617) add fbfe10c413 [multistage] Multistage Engine Lite Mode (prototype) (#15743) add 24751c523e [multistage] Initialize Mailbox in MailboxContentObserver via gRPC Interceptors (#15762) add 7063671548 [multistage] Allow colocated join with tables of different partitions (#15764) add fb4e50158e Bump maven.version from 3.9.7 to 3.9.9 (#15785) add 149ef0ed21 Bump arrow.version from 18.2.0 to 18.3.0 (#15786) add 3056da56c9 Bump org.jdom:jdom2 from 2.0.6 to 2.0.6.1 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 (f3aa0121a2) \ N -- N -- N refs/heads/dependabot/maven/org.jdom-jdom2-2.0.6.1 (3056da56c9) 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: .../apache/pinot/controller/ControllerConf.java | 17 +- .../api/resources/PinotTableRestletResource.java | 9 + .../segment/RealtimeSegmentAssignment.java | 2 +- .../helix/core/rebalance/RebalanceConfig.java | 32 +- .../helix/core/rebalance/TableRebalancer.java | 368 +++++- .../helix/core/relocation/SegmentRelocator.java | 7 +- .../RebalanceServer/RebalanceServerOptions.ts | 10 + .../pinot/controller/ControllerConfTest.java | 11 + .../TableRebalancerClusterStatelessTest.java | 1238 +++++++++++--------- .../helix/core/rebalance/TableRebalancerTest.java | 1127 +++++++++++++++++- ...PartialUpsertTableRebalanceIntegrationTest.java | 86 +- .../query/context/PhysicalPlannerContext.java | 14 + .../physical/v2/nodes/PhysicalAggregate.java | 6 + .../planner/physical/v2/nodes/PhysicalSort.java | 5 + .../query/planner/physical/v2/opt/PRelOptRule.java | 5 + .../physical/v2/opt/PhysicalOptRuleSet.java | 12 +- .../v2/opt/rules/LiteModeSortInsertRule.java | 100 ++ .../v2/opt/rules/LiteModeWorkerAssignmentRule.java | 112 ++ .../apache/pinot/query/routing/WorkerManager.java | 166 ++- .../rules/LiteModeWorkerAssignmentRuleTest.java | 66 ++ .../resources/queries/PhysicalOptimizerPlans.json | 99 ++ .../test/resources/queries/PinotHintablePlans.json | 4 +- .../pinot/query/mailbox/GrpcSendingMailbox.java | 7 + .../pinot/query/mailbox/channel/ChannelUtils.java | 7 + .../query/mailbox/channel/GrpcMailboxServer.java | 4 +- .../mailbox/channel/MailboxContentObserver.java | 5 +- ...nelUtils.java => MailboxServerInterceptor.java} | 27 +- .../pinot/query/mailbox/MailboxServiceTest.java | 46 + .../channel/MailboxContentObserverTest.java | 55 + .../channel/MailboxServerInterceptorTest.java | 86 ++ .../apache/pinot/spi/utils/CommonConstants.java | 1 + .../pinot/tools/ColocatedJoinEngineQuickStart.java | 67 -- .../pinot/tools/ColocatedJoinQuickStart.java | 145 +++ .../pinot/tools/MultistageEngineQuickStart.java | 14 +- .../apache/pinot/tools/PinotTableRebalancer.java | 5 +- .../java/org/apache/pinot/tools/Quickstart.java | 4 +- .../tools/admin/command/RebalanceTableCommand.java | 16 +- pom.xml | 4 +- 38 files changed, 3184 insertions(+), 805 deletions(-) create mode 100644 pinot-query-planner/src/main/java/org/apache/pinot/query/planner/physical/v2/opt/rules/LiteModeSortInsertRule.java create mode 100644 pinot-query-planner/src/main/java/org/apache/pinot/query/planner/physical/v2/opt/rules/LiteModeWorkerAssignmentRule.java create mode 100644 pinot-query-planner/src/test/java/org/apache/pinot/query/planner/physical/v2/opt/rules/LiteModeWorkerAssignmentRuleTest.java copy pinot-query-runtime/src/main/java/org/apache/pinot/query/mailbox/channel/{ChannelUtils.java => MailboxServerInterceptor.java} (51%) create mode 100644 pinot-query-runtime/src/test/java/org/apache/pinot/query/mailbox/channel/MailboxContentObserverTest.java create mode 100644 pinot-query-runtime/src/test/java/org/apache/pinot/query/mailbox/channel/MailboxServerInterceptorTest.java delete mode 100644 pinot-tools/src/main/java/org/apache/pinot/tools/ColocatedJoinEngineQuickStart.java create mode 100644 pinot-tools/src/main/java/org/apache/pinot/tools/ColocatedJoinQuickStart.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org