You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by xi...@apache.org on 2020/08/05 00:43:07 UTC

[incubator-pinot] branch support_aggregation_function_name_with_underscore updated (a8b1912 -> 8912099)

This is an automated email from the ASF dual-hosted git repository.

xiangfu pushed a change to branch support_aggregation_function_name_with_underscore
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


 discard a8b1912  update codecov version to v1.0.12
 discard 51a27b7  Support aggregation function name with underscore inside
     add c2c623a  Refactor TableCache (#5780)
     add 657e245  Add SegmentPartitionedDistinctCount aggregation function (#5786)
     add 81504cd  Bug fix: PinotSegmentToAvroConverter does not handle BYTES data type. (#5789)
     add d1b4586  New endpoint to get routing table for sql query (#5791)
     add 999f567  [TE] Guice Injection for Dashboard Server (#5792)
     add 7cc75ad  [TE] make rca insights in email resilient to issues in rca response (#5794)
     add 5d66b9e  [TE] The endpoint for searching anomalies and pagination (#5778)
     add f2a990b  Move request optimizers and parser factory to pinot-core (#5796)
     add 17a3873  Improve performance of DistinctCountThetaSketch by eliminating empty sketches and unions. (#5798)
     add 43b01ef  Fixing codecov (#5806)
     add 8912099  Support aggregation function name with underscore inside

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   (a8b1912)
            \
             N -- N -- N   refs/heads/support_aggregation_function_name_with_underscore (8912099)

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:
 .../broker/api/resources/PinotBrokerDebug.java     |  25 +-
 .../broker/broker/helix/HelixBrokerStarter.java    |  35 +-
 .../requesthandler/BaseBrokerRequestHandler.java   | 169 ++++----
 .../SingleConnectionBrokerRequestHandler.java      |  11 +-
 .../request/PqlAndCalciteSqlCompatibilityTest.java |   2 +-
 .../broker/requesthandler/FilterOptimizerTest.java |   2 +
 .../LiteralOnlyBrokerRequestTest.java              |  16 +-
 ...tiesToInClauseFilterQueryTreeOptimizerTest.java |   5 +-
 .../requesthandler/OptimizationFlagsTest.java      |   2 +
 .../requesthandler/QueryLimitOverrideTest.java     |   1 +
 .../requesthandler/RangeMergeOptimizerTest.java    |   2 +
 .../common/function/AggregationFunctionType.java   |  24 +-
 .../pinot/common/utils/helix/TableCache.java       | 362 ++++++++++++------
 .../helix/core/PinotHelixResourceManager.java      |  51 +--
 .../pinot/controller/helix/TableCacheTest.java     | 142 +++++++
 .../query/DictionaryBasedAggregationOperator.java  |   3 +
 .../core/plan/maker/InstancePlanMakerImplV2.java   |   8 +-
 .../function/AggregationFunctionFactory.java       |  10 +-
 .../function/AggregationFunctionUtils.java         |  14 +-
 .../function/AggregationFunctionVisitorBase.java   |   4 +-
 ...istinctCountThetaSketchAggregationFunction.java |  46 ++-
 ...artitionedDistinctCountAggregationFunction.java | 425 +++++++++++++++++++++
 .../requesthandler/BrokerRequestOptimizer.java     |   2 +-
 .../FilterQueryOptimizerRequest.java               |   2 +-
 .../requesthandler/FilterQueryTreeOptimizer.java   |   2 +-
 ...enNestedPredicatesFilterQueryTreeOptimizer.java |   2 +-
 ...ualitiesToInClauseFilterQueryTreeOptimizer.java |   2 +-
 .../core}/requesthandler/OptimizationFlags.java    |   2 +-
 .../requesthandler/PinotQueryParserFactory.java    |   2 +-
 .../core}/requesthandler/PinotQueryRequest.java    |   2 +-
 .../core}/requesthandler/RangeMergeOptimizer.java  |   2 +-
 .../function/AggregationFunctionFactoryTest.java   |   7 +
 ...egmentPartitionedDistinctCountQueriesTest.java} |  40 +-
 .../tests/ClusterIntegrationTestUtils.java         |   4 +-
 .../pinot/integration/tests/ClusterTest.java       |   8 +-
 .../tests/HybridClusterIntegrationTest.java        |  15 +-
 ...ridClusterIntegrationTestCommandLineRunner.java |   8 +-
 .../apache/pinot/perf/BenchmarkQueryEngine.java    |   2 +-
 pinot-spi/pom.xml                                  |   4 +
 .../converter/PinotSegmentToAvroConverter.java     |   5 +
 pom.xml                                            |  10 +-
 thirdeye/thirdeye-pinot/config/h2db.mv.db          | Bin 2949120 -> 2490368 bytes
 .../api/application/ApplicationResource.java       |   9 +-
 .../api/user/dashboard/UserDashboardResource.java  |   9 +-
 .../common/restclient/ThirdEyeRcaRestClient.java   |   2 +-
 .../dashboard/RootCauseResourceProvider.java       | 107 ++++++
 .../dashboard/ThirdEyeDashboardApplication.java    | 224 ++++-------
 .../dashboard/ThirdEyeDashboardModule.java         | 217 +++++++++++
 .../resources/AnomalyFlattenResource.java          |   5 +-
 .../dashboard/resources/AnomalyResource.java       |   2 +
 .../dashboard/resources/AutoOnboardResource.java   |  13 +-
 .../resources/CustomizedEventResource.java         |   2 +
 .../dashboard/resources/EntityManagerResource.java |   2 +
 .../dashboard/resources/SummaryResource.java       |  75 +++-
 .../dashboard/resources/v2/AnomaliesResource.java  |   2 +
 .../dashboard/resources/v2/ConfigResource.java     |   2 +
 .../resources/v2/DetectionAlertResource.java       |   2 +
 .../dashboard/resources/v2/ResourceUtils.java      |  17 +
 .../dashboard/resources/v2/RootCauseResource.java  |   2 +-
 .../resources/v2/RootCauseSessionResource.java     |   2 +
 .../v2/anomalies/AnomalySearchFilter.java          | 152 ++++++++
 .../v2/anomalies/AnomalySearchResource.java        |  81 ++++
 .../resources/v2/anomalies/AnomalySearcher.java    | 156 ++++++++
 .../datalayer/entity/MergedAnomalyResultIndex.java |   9 +
 .../datasource/loader/DefaultTimeSeriesLoader.java |   7 +-
 .../content/templates/MetricAnomaliesContent.java  |  14 +-
 .../detector/metric-anomalies-template.ftl         |  55 +--
 .../src/main/resources/schema/create-schema.sql    |   1 +
 .../restclient/TestThirdEyeRcaRestClient.java      |   2 +-
 .../v2/anomalies/AnomalySearcherTest.java          |  88 +++++
 .../alert/scheme/DetectionJiraAlerterTest.java     |   2 +-
 .../templates/TestMetricAnomaliesContent.java      |  67 +++-
 ...rca-highlights-cube-algo-response-rendered.html |  44 +--
 ...st-email-rca-highlights-cube-algo-response.json |  63 +--
 74 files changed, 2270 insertions(+), 645 deletions(-)
 create mode 100644 pinot-controller/src/test/java/org/apache/pinot/controller/helix/TableCacheTest.java
 create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/function/SegmentPartitionedDistinctCountAggregationFunction.java
 rename {pinot-broker/src/main/java/org/apache/pinot/broker => pinot-core/src/main/java/org/apache/pinot/core}/requesthandler/BrokerRequestOptimizer.java (98%)
 rename {pinot-broker/src/main/java/org/apache/pinot/broker => pinot-core/src/main/java/org/apache/pinot/core}/requesthandler/FilterQueryOptimizerRequest.java (97%)
 rename {pinot-broker/src/main/java/org/apache/pinot/broker => pinot-core/src/main/java/org/apache/pinot/core}/requesthandler/FilterQueryTreeOptimizer.java (96%)
 rename {pinot-broker/src/main/java/org/apache/pinot/broker => pinot-core/src/main/java/org/apache/pinot/core}/requesthandler/FlattenNestedPredicatesFilterQueryTreeOptimizer.java (98%)
 rename {pinot-broker/src/main/java/org/apache/pinot/broker => pinot-core/src/main/java/org/apache/pinot/core}/requesthandler/MultipleOrEqualitiesToInClauseFilterQueryTreeOptimizer.java (99%)
 rename {pinot-broker/src/main/java/org/apache/pinot/broker => pinot-core/src/main/java/org/apache/pinot/core}/requesthandler/OptimizationFlags.java (98%)
 rename {pinot-broker/src/main/java/org/apache/pinot/broker => pinot-core/src/main/java/org/apache/pinot/core}/requesthandler/PinotQueryParserFactory.java (97%)
 rename {pinot-broker/src/main/java/org/apache/pinot/broker => pinot-core/src/main/java/org/apache/pinot/core}/requesthandler/PinotQueryRequest.java (96%)
 rename {pinot-broker/src/main/java/org/apache/pinot/broker => pinot-core/src/main/java/org/apache/pinot/core}/requesthandler/RangeMergeOptimizer.java (99%)
 copy pinot-core/src/test/java/org/apache/pinot/queries/{DistinctCountQueriesTest.java => SegmentPartitionedDistinctCountQueriesTest.java} (85%)
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/dashboard/RootCauseResourceProvider.java
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/dashboard/ThirdEyeDashboardModule.java
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/dashboard/resources/v2/anomalies/AnomalySearchFilter.java
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/dashboard/resources/v2/anomalies/AnomalySearchResource.java
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/dashboard/resources/v2/anomalies/AnomalySearcher.java
 create mode 100644 thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/dashboard/resources/v2/anomalies/AnomalySearcherTest.java


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org