You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ja...@apache.org on 2019/10/15 04:08:09 UTC

[incubator-pinot] branch realtime_segment_assignment updated (0c8eb01 -> 7fe2932)

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

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


 discard 0c8eb01  [Resource Assignment] Plug in resource assignment to LLC REALTIME table
     add 2a3fcde  [#4667] Fix auto-tuning algorithm to update when parameters are changed (#4679)
     add c37dc02  Remove the temporary code for the selection fix (#4696)
     add 4d68dd1  [TE] frontend - harleyjj/comparison - set getAnomaliesError in any error catch (#4697)
     add f58ba2d  [TE] [notification] JIRA alerting framework (#4682)
     add c17827f  Fix simple date time column segment generation test (#4698)
     add 7fe2932  [Resource Assignment] Plug in resource assignment to LLC REALTIME table

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   (0c8eb01)
            \
             N -- N -- N   refs/heads/realtime_segment_assignment (7fe2932)

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/assignment/InstancePartitionsUtils.java |  32 +-
 .../helix/core/PinotHelixResourceManager.java      |  21 +-
 .../instance/InstanceTagPoolSelector.java          |   4 +-
 .../realtime/PinotLLCRealtimeSegmentManager.java   |  58 +-
 .../segment/DefaultFlushThresholdUpdater.java      |   8 +-
 .../segment/FlushThresholdUpdateManager.java       |  18 +-
 .../realtime/segment/FlushThresholdUpdater.java    |   3 +-
 .../SegmentSizeBasedFlushThresholdUpdater.java     | 116 ++--
 .../RealtimeSegmentValidationManager.java          |   6 +-
 .../segment/FlushThresholdUpdaterTest.java         | 640 ++++++++++-----------
 .../core/query/reduce/BrokerReduceService.java     | 189 +-----
 .../pinot/core/realtime/stream/StreamConfig.java   |  77 +--
 .../core/realtime/stream/StreamConfigTest.java     | 242 ++++----
 .../SegmentGenerationWithTimeColumnTest.java       |  30 +-
 thirdeye/pom.xml                                   |   7 +
 .../app/pods/components/alert-details/component.js |   4 +-
 thirdeye/thirdeye-pinot/config/detector.yml        |   6 +
 thirdeye/thirdeye-pinot/pom.xml                    |  33 ++
 .../anomaly/alert/util/AnomalyReportGenerator.java |   4 +-
 .../thirdeye/anomaly/alert/util/EmailHelper.java   |   4 +-
 .../anomaly/alert/v2/AlertTaskRunnerV2.java        |   4 +-
 .../dashboard/resources/EmailResource.java         |   4 +-
 .../detection/alert/DetectionAlertTaskFactory.java |   8 +-
 .../ToAllRecipientsDetectionAlertFilter.java       |   8 +-
 .../alert/scheme/DetectionAlertScheme.java         |  53 +-
 .../alert/scheme/DetectionEmailAlerter.java        | 156 ++---
 .../alert/scheme/DetectionJiraAlerter.java         | 133 +++++
 .../notification/commons/JiraConfiguration.java    | 119 ++++
 .../commons}/SmtpConfiguration.java                |  18 +-
 .../content/BaseNotificationContent.java           |   8 +-
 .../content/templates/EntityGroupKeyContent.java   |   7 +-
 .../templates/HierarchicalAnomaliesContent.java    |   3 +-
 .../content/templates/MetricAnomaliesContent.java  |   6 +-
 .../formatter/channels/AlertContentFormatter.java  |  44 ++
 .../formatter/channels/EmailContentFormatter.java  |  58 +-
 .../formatter/channels/JiraContentFormatter.java   | 150 +++++
 .../detector/jira-metric-anomalies-template.ftl    |  48 ++
 .../alert/DetectionAlertTaskFactoryTest.java       |  17 +-
 .../thirdeye/detection/alert/SendAlertTest.java    |   8 -
 .../alert/scheme/AnotherRandomAlerter.java         |   6 +-
 .../detection/alert/scheme/RandomAlerter.java      |   6 +-
 .../templates/TestEntityGroupKeyContent.java       |  18 +-
 .../TestHierarchicalAnomaliesContent.java          |  15 +-
 .../templates/TestMetricAnomaliesContent.java      |  15 +-
 .../channels/TestJiraContentFormatter.java}        | 161 +++---
 .../tools/anomaly/report/AnomalyReportDriver.java  |   4 +-
 .../anomaly/report/GenerateAnomalyReport.java      |   4 +-
 .../resources/test-jira-anomalies-template.ftl     |  20 +
 48 files changed, 1457 insertions(+), 1146 deletions(-)
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/alert/scheme/DetectionJiraAlerter.java
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/notification/commons/JiraConfiguration.java
 rename thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/{anomaly => notification/commons}/SmtpConfiguration.java (83%)
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/notification/formatter/channels/AlertContentFormatter.java
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/notification/formatter/channels/JiraContentFormatter.java
 create mode 100644 thirdeye/thirdeye-pinot/src/main/resources/org/apache/pinot/thirdeye/detector/jira-metric-anomalies-template.ftl
 copy thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/{detection/alert/SendAlertTest.java => notification/formatter/channels/TestJiraContentFormatter.java} (51%)
 create mode 100644 thirdeye/thirdeye-pinot/src/test/resources/test-jira-anomalies-template.ftl


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