This is an automated email from the ASF dual-hosted git repository. apucher pushed a change to branch manual-authorization-annotation in repository https://gitbox.apache.org/repos/asf/pinot.git
discard c43fdad6cc endpoint url fixes discard 959809ecea controller auth interface cleanup discard c17bf27ac6 annotation fix discard f90e6d8727 linter fix discard ca1dacc3d6 linter fix discard 908169c38c add @ManualAuthorization annotation for non-standard endpoints add 9bba76f45a Fix a UT that only shows up on host with more cores (#9257) add e01f8c20e0 Cleanup: Fix README to indicate `SQL based query execution engine.` (#9267) add fad3de8023 Do not use aggregation result for distinct query in IntermediateResultsBlock (#9262) add fd5c942fc8 Add metrics to track controller segment download and upload requests in progress (#9258) add 9f050acaaf add @ManualAuthorization annotation for non-standard endpoints add 714efedce6 linter fix add 67431e2964 linter fix add a991d1a142 annotation fix add 470959a6d4 controller auth interface cleanup add 22d06093e7 endpoint url fixes 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 (c43fdad6cc) \ N -- N -- N refs/heads/manual-authorization-annotation (22d06093e7) 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: README.md | 2 +- .../pinot/common/metrics/ControllerGauge.java | 9 +- .../InflightRequestMetricsInterceptor.java | 85 +++++++++++++++++++ .../resources/LLCSegmentCompletionHandlers.java | 3 + .../PinotSegmentUploadDownloadRestletResource.java | 11 +++ .../api/resources/TrackInflightRequestMetrics.java | 18 ++-- .../TrackedByGauge.java} | 15 ++-- .../InflightRequestMetricsInterceptorTest.java | 99 ++++++++++++++++++++++ .../operator/blocks/IntermediateResultsBlock.java | 77 +++++++++++++---- .../operator/combine/DistinctCombineOperator.java | 25 ++---- .../query/DictionaryBasedDistinctOperator.java | 13 +-- .../core/operator/query/DistinctOperator.java | 11 +-- .../combine/SelectionCombineOperatorTest.java | 20 ++++- .../apache/pinot/queries/DistinctQueriesTest.java | 8 +- ...erSegmentAggregationSingleValueQueriesTest.java | 69 --------------- ...InnerSegmentDistinctSingleValueQueriesTest.java | 72 ++++++++++++++++ 16 files changed, 391 insertions(+), 146 deletions(-) create mode 100644 pinot-controller/src/main/java/org/apache/pinot/controller/api/resources/InflightRequestMetricsInterceptor.java copy pinot-spi/src/main/java/org/apache/pinot/spi/annotations/metrics/MetricsFactory.java => pinot-controller/src/main/java/org/apache/pinot/controller/api/resources/TrackInflightRequestMetrics.java (71%) copy pinot-controller/src/main/java/org/apache/pinot/controller/api/{access/Authenticate.java => resources/TrackedByGauge.java} (68%) create mode 100644 pinot-controller/src/test/java/org/apache/pinot/controller/api/resources/InflightRequestMetricsInterceptorTest.java create mode 100644 pinot-core/src/test/java/org/apache/pinot/queries/InnerSegmentDistinctSingleValueQueriesTest.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org