This is an automated email from the ASF dual-hosted git repository. richardstartin pushed a change to branch range-index-equals-queries in repository https://gitbox.apache.org/repos/asf/pinot.git
discard f72f22eac2 evaluate EQ queries against range index when available add 303b1a7cbe [Issue 7519] Adds support for multiple filtered/unfiltered aggregations with GROUP BY (#10000) add 98c39a5f71 Repurpose MinionInstancesCleanupTask to StaleInstancesCleanupTask to remove stale broker and server instances as well. (#10027) add b58514c799 Create metadata only tarball for metadata push job (#10034) add a46b05f8f6 print explain plan when integration test query fails to ease debugging (#10057) add ac2839fad1 evaluate EQ queries against range index when available 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 (f72f22eac2) \ N -- N -- N refs/heads/range-index-equals-queries (ac2839fad1) 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: .../pinot/common/metrics/ControllerGauge.java | 8 +- .../pinot/controller/BaseControllerStarter.java | 14 +- .../apache/pinot/controller/ControllerConf.java | 52 ++++++++ .../core/cleanup/StaleInstancesCleanupTask.java | 146 +++++++++++++++++++++ .../core/minion/MinionInstancesCleanupTask.java | 88 ------------- .../StaleInstancesCleanupTaskStatelessTest.java | 138 +++++++++++++++++++ .../MinionInstancesCleanupTaskStatelessTest.java | 82 ------------ ...yOperator.java => FilteredGroupByOperator.java} | 115 +++++++++++----- .../pinot/core/plan/AggregationPlanNode.java | 87 ++---------- .../apache/pinot/core/plan/GroupByPlanNode.java | 30 ++++- .../function/AggregationFunctionUtils.java | 94 +++++++++++++ .../groupby/DefaultGroupByExecutor.java | 56 +++++--- .../query/aggregation/groupby/GroupByExecutor.java | 4 + .../core/query/request/context/QueryContext.java | 6 +- .../query/aggregation/groupby/GroupByTrimTest.java | 9 +- .../pinot/queries/FilteredAggregationsTest.java | 57 ++++++-- .../tests/ClusterIntegrationTestUtils.java | 67 ++++++++-- .../batch/common/SegmentGenerationJobUtils.java | 46 +++++++ .../batch/hadoop/HadoopSegmentCreationMapper.java | 24 +++- .../spark/SparkSegmentGenerationJobRunner.java | 34 +++-- .../spark3/SparkSegmentGenerationJobRunner.java | 32 +++-- .../standalone/SegmentGenerationJobRunner.java | 1 + .../segment/local/utils/SegmentPushUtils.java | 21 ++- .../pinot/spi/ingestion/batch/spec/Constants.java | 1 + .../spi/ingestion/batch/spec/PushJobSpec.java | 14 ++ .../batch/spec/SegmentGenerationJobSpec.java | 13 ++ .../batch/spec/SegmentGenerationTaskSpec.java | 10 ++ 27 files changed, 882 insertions(+), 367 deletions(-) create mode 100644 pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/cleanup/StaleInstancesCleanupTask.java delete mode 100644 pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/minion/MinionInstancesCleanupTask.java create mode 100644 pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/cleanup/StaleInstancesCleanupTaskStatelessTest.java delete mode 100644 pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/minion/MinionInstancesCleanupTaskStatelessTest.java copy pinot-core/src/main/java/org/apache/pinot/core/operator/query/{GroupByOperator.java => FilteredGroupByOperator.java} (51%) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org