This is an automated email from the ASF dual-hosted git repository.
jlli pushed a change to branch add-logic-for-lead-controller-resource
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.
omit 87571c6 Address PR comments
omit ff23581 Move murmur2 functions to an util class in pinot-common
omit bf6f2ed Move murmur2 functions to an util class in pinot-common
omit 2857d25 Address PR comments; Remove API design out of this PR
omit e06a908 Address PR comments
omit 178170b Add logic for lead controller resource on controller side
omit c0cc01b Add logic for leveraging lead controller resource
add d2b2981 add download excel (#4403)
add 7b1715c 3891: Check for validity of segment start/end time during
segment generation (#4368)
add 625482a [TE] Renamed some classes to making it accurate and
consistent (#4439)
add 31d916f [TE] Adding Entity GroupKey Anomalies Email Reporter (#4433)
add db5923c Clean up the ServerInstance class and remove the un-necessary
ip address stored (#4438)
add 5492217 Fix the potential resource leak from NettyServer (#4440)
add e897271 [TE] add ml auto config into YAML template (#4423)
add 16f028e Fix ServerInstanceTest (#4442)
add 2e07b0b [TE] Improvements to the Entity GroupKey Template (#4444)
add cd579b1 Add comments and fix typo for the SegmentCompletionTest.
(#4447)
add 85b07f3 [TE] frontend - harleyjj/preview - provide custom time range
before previewing (#4437)
add 365ee85 [TE] Detection and alert config formatters (#4443)
add 8088474 Add logic for leveraging lead controller resource
add c151ec1 Add logic for lead controller resource on controller side
add 9447536 Address PR comments
add a0cf64d Address PR comments; Remove API design out of this PR
add 36e0e69 Move murmur2 functions to an util class in pinot-common
add 3f9beb9 Move murmur2 functions to an util class in pinot-common
add 9419384 Address PR comments
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 (87571c6)
\
N -- N -- N refs/heads/add-logic-for-lead-controller-resource
(9419384)
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/helix/LiveInstanceChangeHandler.java | 6 +-
.../pinot/common/response/ServerInstance.java | 180 +++++++-------------
.../apache/pinot/common/utils/time/TimeUtils.java | 15 ++
.../controller/api/upload/SegmentValidator.java | 2 +-
.../src/main/resources/static/css/pinot.css | 16 +-
.../src/main/resources/static/js/init.js | 10 ++
.../src/main/resources/static/query/index.html | 8 +-
.../helix/core/realtime/SegmentCompletionTest.java | 34 ++--
.../generator/SegmentGeneratorConfig.java | 10 ++
.../apache/pinot/core/minion/SegmentConverter.java | 18 +-
.../converter/RealtimeSegmentConverter.java | 6 +
.../creator/impl/SegmentColumnarIndexCreator.java | 135 ++++++++++++++-
.../pinot/core/data/readers/PinotSegmentUtil.java | 74 +++++---
.../pinot/core/minion/SegmentConverterTest.java | 16 +-
...adataAndDictionaryAggregationPlanMakerTest.java | 12 ++
.../core/segment/index/ColumnMetadataTest.java | 6 +
.../segment/index/SegmentMetadataImplTest.java | 6 +
.../SegmentV1V2ToV3FormatConverterTest.java | 6 +
.../SegmentGenerationWithTimeColumnTest.java | 36 +++-
.../index/loader/SegmentPreProcessorTest.java | 6 +
.../startree/StarTreeIndexTestSegmentHelper.java | 6 +
.../pinot/core/startree/TestStarTreeMetadata.java | 6 +
.../hll/SegmentWithHllIndexCreateHelper.java | 6 +
.../org/apache/pinot/core/util/CrcUtilsTest.java | 6 +
.../pinot/queries/BaseMultiValueQueriesTest.java | 6 +
.../pinot/queries/BaseSingleValueQueriesTest.java | 6 +
.../apache/pinot/queries/FastHllQueriesTest.java | 6 +
.../segments/v1/creator/DictionariesTest.java | 6 +
.../pinot/segments/v1/creator/IntArraysTest.java | 6 +
.../server/request/ScheduledRequestHandler.java | 18 +-
.../request/ScheduledRequestHandlerTest.java | 35 ++--
.../apache/pinot/transport/netty/NettyServer.java | 56 +++---
.../pinot/transport/common/ServerInstanceTest.java | 62 +++----
.../pinot/transport/netty/NettyTestUtils.java | 8 +-
.../transport/perf/ScatterGatherPerfServer.java | 8 +-
.../transport/scattergather/ScatterGatherTest.java | 24 +--
.../app/pods/components/alert-details/component.js | 5 +-
.../app/pods/components/alert-details/template.hbs | 21 +++
.../app/pods/manage/explore/route.js | 4 +-
thirdeye/thirdeye-frontend/app/utils/constants.js | 1 +
.../pods/components/yaml-editor/component-test.js | 2 +-
.../alert/content/BaseEmailContentFormatter.java | 95 +++++++----
.../content/EntityGroupByContentFormatter.java | 149 ++++++++++++++++
...HierarchicalAnomaliesEmailContentFormatter.java | 5 +-
...a => MetricAnomaliesEmailContentFormatter.java} | 17 +-
...nboardingNotificationEmailContentFormatter.java | 1 +
.../anomaly/alert/util/AnomalyReportGenerator.java | 2 +-
.../anomaly/alert/v2/AlertTaskRunnerV2.java | 2 +-
.../dashboard/resources/v2/AnomaliesResource.java | 24 ++-
.../dashboard/resources/v2/pojo/SearchFilters.java | 2 -
.../thirdeye/detection/DefaultDataProvider.java | 2 +-
.../thirdeye/detection/DetectionResource.java | 15 +-
.../alert/scheme/DetectionEmailAlerter.java | 23 +--
.../wrapper/ChildKeepingMergeWrapper.java | 16 +-
.../thirdeye/detection/wrapper/GrouperWrapper.java | 2 +-
.../DTOFormatter.java} | 18 +-
.../DetectionAlertConfigFormatter.java} | 26 ++-
.../formatter/DetectionConfigFormatter.java | 189 +++++++++++++++++++++
.../apache/pinot/thirdeye/util/ThirdEyeUtils.java | 5 +-
.../detector/entity-groupby-anomaly-report.ftl | 98 +++++++++++
...ly-report.ftl => metric-anomalies-template.ftl} | 0
.../commons/TestEmailContentFormatterFactory.java | 6 +-
.../alert/content/ContentFormatterUtils.java | 48 ++++++
...=> TestEntityGroupByEmailContentFormatter.java} | 136 ++++++++-------
...HierarchicalAnomaliesEmailContentFormatter.java | 22 +--
... TestMetricAnomaliesEmailContentFormatter.java} | 26 +--
...TestOnboardingNotificationContentFormatter.java | 20 +--
.../pinot/thirdeye/datalayer/DaoTestUtils.java | 13 ++
.../thirdeye/detection/yaml/YamlResourceTest.java | 2 +-
.../formatter/DetectionConfigFormatterTest.java | 82 +++++++++
.../tools/RunAdhocDatabaseQueriesTool.java | 31 +++-
.../detection/yaml/alertconfig/alert-config-5.yaml | 2 +-
...st-entity-groupby-email-content-formatter.html} | 83 ++++-----
...st-hierarchical-metric-anomalies-template.html} | 0
...er.html => test-metric-anomalies-template.html} | 0
75 files changed, 1486 insertions(+), 576 deletions(-)
create mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/alert/content/EntityGroupByContentFormatter.java
rename
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/alert/content/{MultipleAnomaliesEmailContentFormatter.java
=> MetricAnomaliesEmailContentFormatter.java} (92%)
copy
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{detection/health/HealthStatus.java
=> formatter/DTOFormatter.java} (62%)
copy
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{detection/health/HealthStatus.java
=> formatter/DetectionAlertConfigFormatter.java} (50%)
create mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/formatter/DetectionConfigFormatter.java
create mode 100644
thirdeye/thirdeye-pinot/src/main/resources/org/apache/pinot/thirdeye/detector/entity-groupby-anomaly-report.ftl
rename
thirdeye/thirdeye-pinot/src/main/resources/org/apache/pinot/thirdeye/detector/{holiday-anomaly-report.ftl
=> metric-anomalies-template.ftl} (100%)
create mode 100644
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/alert/content/ContentFormatterUtils.java
copy
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/alert/content/{TestMultipleAnomaliesEmailContentFormatter.java
=> TestEntityGroupByEmailContentFormatter.java} (59%)
rename
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/alert/content/{TestMultipleAnomaliesEmailContentFormatter.java
=> TestMetricAnomaliesEmailContentFormatter.java} (86%)
create mode 100644
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/formatter/DetectionConfigFormatterTest.java
copy
thirdeye/thirdeye-pinot/src/test/resources/{test-multiple-anomalies-email-content-formatter.html
=> test-entity-groupby-email-content-formatter.html} (59%)
rename
thirdeye/thirdeye-pinot/src/test/resources/{test-hierarchical-anomalies-email-content-formatter.html
=> test-hierarchical-metric-anomalies-template.html} (100%)
rename
thirdeye/thirdeye-pinot/src/test/resources/{test-multiple-anomalies-email-content-formatter.html
=> test-metric-anomalies-template.html} (100%)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]