This is an automated email from the ASF dual-hosted git repository. jihao pushed a change to branch new-anomalies-page-ui in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.
discard 20a747f ui for new anomalies page add 17a3873 Improve performance of DistinctCountThetaSketch by eliminating empty sketches and unions. (#5798) add 43b01ef Fixing codecov (#5806) add 336131a Fix theta-sketch missing break in switch statement (#5811) add bf928e9 [TE] Fix issue of not loading RCA template when metricid is not specified (#5799) add 71c77a5 Create reader context only once in ColumnValueReader (#5813) add 23889f0 Message from exception in Schema add/validate (#5815) add 4153958 Enhancing the segment replacement api (#5782) add ffa9541 Pre-generate aggregation functions in QueryContext (#5805) add f68b82e Enhance VarByteChunkSVForwardIndexReader to directly read from data buffer for uncompressed data (#5816) add 2e08602 Pradeep/sr ssl fix (#5758) new 56b86f5 ui for new anomalies page 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 (20a747f) \ N -- N -- N refs/heads/new-anomalies-page-ui (56b86f5) 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. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .github/workflows/pinot_tests.yml | 14 +- docs/pluggable_streams.rst | 56 ++++++++ .../BrokerUserDefinedMessageHandlerFactory.java | 27 ++++ ...essage.java => RoutingTableRebuildMessage.java} | 32 ++--- pinot-common/src/test/resources/pql_queries.list | 8 +- pinot-common/src/test/resources/sql_queries.list | 8 +- .../api/resources/PinotSchemaRestletResource.java | 14 +- .../helix/core/PinotHelixResourceManager.java | 84 +++++++++++- .../helix/core/PinotHelixResourceManagerTest.java | 2 +- .../org/apache/pinot/core/common/DataFetcher.java | 13 +- .../core/common/datatable/DataTableUtils.java | 7 +- .../operator/combine/GroupByCombineOperator.java | 4 +- .../combine/GroupByOrderByCombineOperator.java | 4 +- .../plan/AggregationGroupByOrderByPlanNode.java | 3 +- .../core/plan/AggregationGroupByPlanNode.java | 3 +- .../pinot/core/plan/AggregationPlanNode.java | 3 +- .../plan/DictionaryBasedAggregationPlanNode.java | 4 +- .../plan/MetadataBasedAggregationPlanNode.java | 4 +- .../aggregation/function/AggregationFunction.java | 9 +- .../function/AggregationFunctionUtils.java | 6 +- .../function/AggregationFunctionVisitorBase.java | 114 ---------------- .../function/AvgAggregationFunction.java | 5 - .../function/AvgMVAggregationFunction.java | 5 - .../function/CountAggregationFunction.java | 5 - .../function/CountMVAggregationFunction.java | 5 - .../function/DistinctAggregationFunction.java | 5 - .../function/DistinctCountAggregationFunction.java | 114 ++++++++++------ .../DistinctCountBitmapAggregationFunction.java | 140 ++++++++++++------- .../DistinctCountBitmapMVAggregationFunction.java | 47 +++---- .../DistinctCountHLLAggregationFunction.java | 5 - .../DistinctCountHLLMVAggregationFunction.java | 5 - .../DistinctCountMVAggregationFunction.java | 32 ++--- .../DistinctCountRawHLLAggregationFunction.java | 5 - ...inctCountRawThetaSketchAggregationFunction.java | 5 - ...istinctCountThetaSketchAggregationFunction.java | 65 +++++---- .../function/FastHLLAggregationFunction.java | 5 - .../function/MaxAggregationFunction.java | 5 - .../function/MaxMVAggregationFunction.java | 5 - .../function/MinAggregationFunction.java | 5 - .../function/MinMVAggregationFunction.java | 5 - .../function/MinMaxRangeAggregationFunction.java | 5 - .../function/MinMaxRangeMVAggregationFunction.java | 5 - .../function/PercentileAggregationFunction.java | 5 - .../function/PercentileEstAggregationFunction.java | 5 - .../PercentileEstMVAggregationFunction.java | 5 - .../function/PercentileMVAggregationFunction.java | 5 - .../PercentileTDigestAggregationFunction.java | 5 - .../PercentileTDigestMVAggregationFunction.java | 5 - ...artitionedDistinctCountAggregationFunction.java | 5 - .../function/StUnionAggregationFunction.java | 5 - .../function/SumAggregationFunction.java | 5 - .../function/SumMVAggregationFunction.java | 5 - .../core/query/reduce/ResultReducerFactory.java | 6 +- .../core/query/request/context/QueryContext.java | 27 +++- .../request/context/utils/QueryContextUtils.java | 19 +-- .../forward/BaseChunkSVForwardIndexReader.java | 17 +-- .../FixedByteChunkSVForwardIndexReader.java | 4 + .../forward/VarByteChunkSVForwardIndexReader.java | 152 ++++++++++++++++----- .../pinot/core/startree/v2/BaseStarTreeV2Test.java | 3 +- .../DefaultAggregationExecutorTest.java | 4 +- .../apache/pinot/perf/BenchmarkCombineGroupBy.java | 4 +- .../apache/pinot/perf/BenchmarkIndexedTable.java | 4 +- ...aConfluentSchemaRegistryAvroMessageDecoder.java | 49 ++++++- .../thirdeye-frontend/app/pods/rootcause/route.js | 70 ++++++---- 64 files changed, 714 insertions(+), 592 deletions(-) copy pinot-common/src/main/java/org/apache/pinot/common/messages/{SegmentRefreshMessage.java => RoutingTableRebuildMessage.java} (63%) delete mode 100644 pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/function/AggregationFunctionVisitorBase.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org