This is an automated email from the ASF dual-hosted git repository.
jackie pushed a change to branch instance_assignment
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.
discard b6d1437 [Instance Assignment] Add implementations for instance
assignment
add ac1f387 Rename metric to reflect what's being counted:
segments-processed vs segments-queried (#4499)
add 2bbdfab [TE] Remove deprecated stage classes and tests (#4496)
add b73427d [TE] [Composite-Alert] Adding Entity GroupKey with Whitelist
Template and Formatter (#4495)
add d1180d9 Down-grade Helix to version 0.8.4 (#4502)
add aea8fca [TE] anomalies table endpoint (#4501)
add 4f0ba37 [Instance Assignment] Add implementations for instance
assignment
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 (b6d1437)
\
N -- N -- N refs/heads/instance_assignment (4f0ba37)
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:
.../org/apache/pinot/common/utils/DataTable.java | 2 +-
.../HashBasedRotateInstanceConstraintApplier.java | 7 +-
.../instance/InstanceConstraintApplier.java | 7 +-
.../instance/InstanceReplicaPartitionSelector.java | 12 +-
.../instance/InstanceTagPoolSelector.java | 12 +-
.../query/executor/ServerQueryExecutorV1Impl.java | 12 +-
.../core/query/reduce/BrokerReduceService.java | 12 +-
.../pinot/core/query/scheduler/QueryScheduler.java | 2 +-
pinot-integration-tests/pom.xml | 2 +
pom.xml | 6 +-
.../content/EntityGroupKeyContentFormatter.java | 69 +++++--
...HierarchicalAnomaliesEmailContentFormatter.java | 5 +-
.../MetricAnomaliesEmailContentFormatter.java | 7 +-
.../dashboard/ThirdEyeDashboardApplication.java | 2 +
.../resources/AnomalyFlattenResource.java | 84 +++-----
.../alert/scheme/DetectionEmailAlerter.java | 5 +-
.../algorithm/stage/AnomalyDetectionStage.java | 38 ----
.../stage/AnomalyDetectionStageWrapper.java | 217 ---------------------
.../algorithm/stage/AnomalyFilterStage.java | 38 ----
.../algorithm/stage/AnomalyFilterStageWrapper.java | 105 ----------
.../algorithm/stage/BaseDetectionStage.java | 36 ----
.../stage/BaselineRuleDetectionStage.java | 144 --------------
.../algorithm/stage/BaselineRuleFilterStage.java | 119 -----------
.../detection/algorithm/stage/GrouperStage.java | 38 ----
.../algorithm/stage/GrouperStageWrapper.java | 89 ---------
.../stage/StaticAnomalyDetectionStage.java | 169 ----------------
.../algorithm/stage/StaticAnomalyFilterStage.java | 62 ------
.../stage/ThresholdRuleDetectionStage.java | 107 ----------
.../algorithm/stage/ThresholdRuleFilterStage.java | 90 ---------
.../detector/entity-groupkey-anomaly-report.ftl | 53 +++++
.../TestEntityGroupKeyEmailContentFormatter.java | 130 +++++++++++-
.../resources/TestAnomalyFlattenResource.java | 39 ++--
.../stage/AnomalyDetectionStageWrapperTest.java | 87 ---------
.../stage/BaselineRuleDetectionStageTest.java | 141 -------------
.../algorithm/stage/BaselineRuleFilterTest.java | 173 ----------------
.../stage/ThresholdRuleDetectionStageTest.java | 93 ---------
.../algorithm/stage/ThresholdRuleFilterTest.java | 167 ----------------
.../tools/RunAdhocDatabaseQueriesTool.java | 1 +
...est-entity-groupby-email-content-formatter.html | 2 +
...by-with-whitelist-email-content-formatter.html} | 34 ++++
40 files changed, 357 insertions(+), 2061 deletions(-)
delete mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/stage/AnomalyDetectionStage.java
delete mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/stage/AnomalyDetectionStageWrapper.java
delete mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/stage/AnomalyFilterStage.java
delete mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/stage/AnomalyFilterStageWrapper.java
delete mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/stage/BaseDetectionStage.java
delete mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/stage/BaselineRuleDetectionStage.java
delete mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/stage/BaselineRuleFilterStage.java
delete mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/stage/GrouperStage.java
delete mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/stage/GrouperStageWrapper.java
delete mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/stage/StaticAnomalyDetectionStage.java
delete mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/stage/StaticAnomalyFilterStage.java
delete mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/stage/ThresholdRuleDetectionStage.java
delete mode 100644
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/algorithm/stage/ThresholdRuleFilterStage.java
delete mode 100644
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/detection/algorithm/stage/AnomalyDetectionStageWrapperTest.java
delete mode 100644
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/detection/algorithm/stage/BaselineRuleDetectionStageTest.java
delete mode 100644
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/detection/algorithm/stage/BaselineRuleFilterTest.java
delete mode 100644
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/detection/algorithm/stage/ThresholdRuleDetectionStageTest.java
delete mode 100644
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/detection/algorithm/stage/ThresholdRuleFilterTest.java
copy
thirdeye/thirdeye-pinot/src/test/resources/{test-entity-groupby-email-content-formatter.html
=> test-entity-groupby-with-whitelist-email-content-formatter.html} (73%)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]