This is an automated email from the ASF dual-hosted git repository. richardstartin pushed a change to branch propagate-inversion in repository https://gitbox.apache.org/repos/asf/pinot.git
omit 4307f59bf5 print explain plan when integration test query fails to ease debugging omit b403f262ea formatting omit 304b15b807 propagate inverted status with BitmapDocIdIterator to avoid expensive flipping of bitmaps add 9c840fd2ae add successful tests back to ITCase list (#10051) add c50cef11a7 Fix local segment tar copy (#10048) 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 464ea2c3d0 propagate inverted status with BitmapDocIdIterator to avoid expensive flipping of bitmaps 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 (4307f59bf5) \ N -- N -- N refs/heads/propagate-inversion (464ea2c3d0) 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 | 88 ++----------- .../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/BaseClusterIntegrationTestSet.java | 25 ++-- .../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 | 24 +++- .../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, 840 insertions(+), 371 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