This is an automated email from the ASF dual-hosted git repository. jlli pushed a change to branch add-retry-to-download-segment in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.
discard 7c89f3d Address PR comment discard bce865a Add retry logic to download segment tar file in pinot server add bc2c066 [TE] frontend - harleyjj/rca - Phase 1 of custom baseline selector (#5752) add a910c04 adding zookeeper browser module in UI (#5763) add a8fbdae Optimize DistinctCount to store dictIds within segment (#5765) add 0c4a673 [TE] add enpoints to save dimension filter for RCA v2 POC (#5735) add ba9e14f [TE] add auto-loading dimension filters on RCA frontend (#5767) add 1f69041 [Part 2] Add geo support - add a geo aggregate function st_union (#5744) add b1ab891 [TE] Embed cube algorithm results in email (#5770) add 10117ae Add untar failure server meter (#5768) add b28f046 Add retry logic to download segment tar file in pinot server add 22f575a Address PR comment 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 (7c89f3d) \ N -- N -- N refs/heads/add-retry-to-download-segment (22f575a) 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: .../common/function/AggregationFunctionType.java | 3 + .../apache/pinot/common/metrics/ServerMeter.java | 1 + .../main/resources/app/components/AppLoader.tsx | 16 +- .../main/resources/app/components/Breadcrumbs.tsx | 3 +- .../src/main/resources/app/components/Layout.tsx | 4 +- .../main/resources/app/components/MaterialTree.tsx | 122 ++++++++++++ .../app/components/Query/QuerySideBar.tsx | 3 +- .../src/main/resources/app/components/SideBar.tsx | 2 +- .../app/components/SvgIcons/ZookeeperIcon.tsx | 44 +++++ .../src/main/resources/app/components/TabPanel.tsx | 38 ++-- .../app/components/Zookeeper/TreeDirectory.tsx | 175 +++++++++++++++++ pinot-controller/src/main/resources/app/index.html | 2 +- .../src/main/resources/app/interfaces/types.d.ts | 4 +- .../main/resources/app/pages/InstanceDetails.tsx | 2 +- .../src/main/resources/app/pages/Query.tsx | 6 +- .../src/main/resources/app/pages/ZookeeperPage.tsx | 207 +++++++++++++++++++++ .../src/main/resources/app/requests/index.ts | 14 +- pinot-controller/src/main/resources/app/router.tsx | 4 +- .../src/main/resources/app/styles/styles.css | 2 +- .../src/main/resources/app/theme/typography.ts | 3 +- .../main/resources/app/utils/PinotMethodUtils.ts | 65 ++++++- .../src/main/resources/app/utils/Utils.tsx | 14 +- pinot-controller/src/main/resources/package.json | 1 + .../org/apache/pinot/core/common/BlockValSet.java | 8 + .../apache/pinot/core/common/DataBlockCache.java | 11 +- .../apache/pinot/core/common/ObjectSerDeUtils.java | 29 ++- .../pinot/core/geospatial/GeometryUtils.java | 2 + .../pinot/core/operator/ProjectionOperator.java | 9 +- .../core/operator/blocks/ProjectionBlock.java | 39 ++-- .../pinot/core/operator/blocks/TransformBlock.java | 4 - .../operator/docvalsets/ProjectionBlockValSet.java | 28 +-- .../operator/docvalsets/TransformBlockValSet.java | 8 + .../function/AggregationFunctionFactory.java | 2 + .../function/AggregationFunctionVisitorBase.java | 4 + .../function/DistinctCountAggregationFunction.java | 165 +++++++++++----- .../DistinctCountMVAggregationFunction.java | 53 +++++- .../function/StUnionAggregationFunction.java | 140 ++++++++++++++ ...untQueriesTest.java => StUnionQueriesTest.java} | 171 +++++++++-------- .../server/starter/helix/HelixServerStarter.java | 10 +- .../starter/helix/SegmentFetcherAndLoader.java | 35 ++-- .../app/mirage/endpoints/rootcause.js | 9 + .../rootcause-custom-baseline/component.js | 104 +++++++++++ .../rootcause-custom-baseline/template.hbs | 53 ++++++ .../rootcause-select-comparison-range/component.js | 43 +++-- .../rootcause-select-comparison-range/template.hbs | 16 ++ .../app/pods/rootcause/controller.js | 18 +- .../thirdeye-frontend/app/pods/rootcause/route.js | 23 ++- .../pods/services/rootcause-template/service.js | 18 ++ thirdeye/thirdeye-frontend/app/styles/app.scss | 1 + .../components/rootcause-custom-baseline.scss | 19 ++ .../rootcause-select-comparison-range.scss | 7 + .../app/styles/components/te-modal.scss | 2 +- .../dashboard/ThirdEyeDashboardApplication.java | 2 + .../resources/v2/RootCauseTemplateResource.java | 137 ++++++++++++++ .../v2/rootcause/AbstractRCAModuleConfig.java} | 9 +- .../rootcause/DimensionAnalysisModuleConfig.java | 82 ++++++++ ...gManager.java => RootcauseTemplateManager.java} | 8 +- .../bao/jdbc/RootcauseTemplateManagerImpl.java | 55 ++++++ .../thirdeye/datalayer/dao/GenericPojoDao.java | 4 + ...plicationDTO.java => RootcauseTemplateDTO.java} | 5 +- ...onfigIndex.java => RootcauseTemplateIndex.java} | 41 ++-- ...icationBean.java => RootcauseTemplateBean.java} | 42 ++++- .../thirdeye/datalayer/util/DaoProviderUtil.java | 3 + .../pinot/thirdeye/datasource/DAORegistry.java | 7 + .../content/templates/MetricAnomaliesContent.java | 2 +- .../thirdeye-pinot/src/main/resources/log4j2.xml | 2 +- .../detector/metric-anomalies-template.ftl | 47 +++++ .../src/main/resources/schema/create-schema.sql | 16 ++ .../restclient/MockThirdEyeRcaRestClient.java | 1 - .../bao/TestRootcauseTemplateManager.java | 90 +++++++++ .../alert/scheme/DetectionEmailAlerterTest.java | 1 - .../templates/TestMetricAnomaliesContent.java | 48 ++++- ...rca-highlights-cube-algo-response-rendered.html | 115 ++++++++++++ ...st-email-rca-highlights-cube-algo-response.json | 149 +++++++++++++++ .../resources/test-metric-anomalies-template.html | 1 + 75 files changed, 2318 insertions(+), 315 deletions(-) create mode 100644 pinot-controller/src/main/resources/app/components/MaterialTree.tsx create mode 100644 pinot-controller/src/main/resources/app/components/SvgIcons/ZookeeperIcon.tsx copy website/src/components/CodeHeader/index.js => pinot-controller/src/main/resources/app/components/TabPanel.tsx (58%) create mode 100644 pinot-controller/src/main/resources/app/components/Zookeeper/TreeDirectory.tsx create mode 100644 pinot-controller/src/main/resources/app/pages/ZookeeperPage.tsx create mode 100644 pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/function/StUnionAggregationFunction.java copy pinot-core/src/test/java/org/apache/pinot/queries/{DistinctCountQueriesTest.java => StUnionQueriesTest.java} (59%) create mode 100644 thirdeye/thirdeye-frontend/app/pods/components/rootcause-custom-baseline/component.js create mode 100644 thirdeye/thirdeye-frontend/app/pods/components/rootcause-custom-baseline/template.hbs create mode 100644 thirdeye/thirdeye-frontend/app/pods/services/rootcause-template/service.js create mode 100644 thirdeye/thirdeye-frontend/app/styles/components/rootcause-custom-baseline.scss create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/dashboard/resources/v2/RootCauseTemplateResource.java copy thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{datalayer/dto/OverrideConfigDTO.java => dashboard/resources/v2/rootcause/AbstractRCAModuleConfig.java} (78%) create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/dashboard/resources/v2/rootcause/DimensionAnalysisModuleConfig.java copy thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/datalayer/bao/{DetectionConfigManager.java => RootcauseTemplateManager.java} (75%) create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/datalayer/bao/jdbc/RootcauseTemplateManagerImpl.java copy thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/datalayer/dto/{ApplicationDTO.java => RootcauseTemplateDTO.java} (86%) copy thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/datalayer/entity/{AlertConfigIndex.java => RootcauseTemplateIndex.java} (73%) copy thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/datalayer/pojo/{ApplicationBean.java => RootcauseTemplateBean.java} (61%) create mode 100644 thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/datalayer/bao/TestRootcauseTemplateManager.java create mode 100644 thirdeye/thirdeye-pinot/src/test/resources/test-email-rca-highlights-cube-algo-response-rendered.html create mode 100644 thirdeye/thirdeye-pinot/src/test/resources/test-email-rca-highlights-cube-algo-response.json --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org