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

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


 discard 2bd709e  Address comments
 discard 8ad3619  Refactor HelixExternalViewBasedTimeBoundaryService to support 
all time units
     new 2221623  Fix the issue where ZkCacheBaseDataAccessor.getChildren() can 
return list with null znRecords (#4152)
     new 46accf2  [TE] avoid tuning the detector and baseline provider 
separately if both interfaces are implemented in the same class (#4154)
     new 16c46f3  [TE] catch exceptions in dimension exploration (#4136)
     new f69e3d3  [TE] detection - two side threshold filter (#4148)
     new 0086590  [TE] Add upper/lower/current to HoltWinters baseline (#4151)
     new 3b51d7a  [TE] fix detection alert filter recipients class casting 
issue (#4158)
     new 440a3a3  [TE] Endpoint for upper/lower bounds (#4160)
     new 8464997  Add multiple locks which can be obtained based on segment 
name in lookupOrCreateFSM (#4159)
     new 32b505c  Move pinot-filesystem into pinot-common (#4155)
     new f3f77ed  [TE] anomalies endpoint to work with new baseline provider 
(#4161)
     new e8a620f  Update documentation to reflect the new dependency structure 
(#4163)
     new 2401249  Remove filesystem module from pinot-distribution (#4165)
     new 19f40d0  Refactor HelixExternalViewBasedTimeBoundaryService to support 
all time units

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   (2bd709e)
            \
             N -- N -- N   refs/heads/time_boundary (19f40d0)

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.

The 5999 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docs/code_modules.rst                              |   9 +-
 docs/img/PinotController.png                       | Bin 47991 -> 61419 bytes
 docs/img/PinotFoundation.png                       | Bin 44122 -> 29973 bytes
 docs/img/PinotServer.png                           | Bin 55062 -> 73944 bytes
 pinot-azure-filesystem/pom.xml                     |   6 --
 .../HelixExternalViewBasedTimeBoundaryService.java |  49 ++++++++---
 ...xExternalViewBasedTimeBoundaryServiceTest.java} |  48 ++++++++--
 pinot-common/pom.xml                               |   4 -
 .../pinot/common/metadata/ZKMetadataProvider.java  |  98 ++++++++++++---------
 .../org/apache/pinot/filesystem/LocalPinotFS.java  |   0
 .../java/org/apache/pinot/filesystem/PinotFS.java  |   0
 .../apache/pinot/filesystem/PinotFSFactory.java    |   0
 .../apache/pinot/filesystem/LocalPinotFSTest.java  |   0
 .../pinot/filesystem/PinotFSFactoryTest.java       |   0
 pinot-controller/pom.xml                           |   4 -
 .../helix/core/PinotHelixResourceManager.java      |  14 ++-
 .../core/realtime/PinotRealtimeSegmentManager.java |  16 ++--
 .../core/realtime/SegmentCompletionManager.java    |  49 +++++++----
 pinot-distribution/pom.xml                         |   4 -
 pinot-filesystem/pom.xml                           |  69 ---------------
 pinot-hadoop-filesystem/pom.xml                    |   6 --
 pom.xml                                            |   6 --
 .../dashboard/resources/v2/AnomaliesResource.java  |  13 ++-
 .../thirdeye/dataframe/util/DataFrameUtils.java    |   1 +
 .../thirdeye/detection/DefaultDataProvider.java    |   6 +-
 .../detection/DetectionPipelineException.java      |  22 +++++
 .../alert/DetectionAlertFilterRecipients.java      |  14 ++-
 .../detection/algorithm/DimensionWrapper.java      |  48 ++++++++--
 .../annotation/registry/DetectionRegistry.java     |  37 ++++++--
 .../AbsoluteChangeRuleAnomalyFilter.java           |  18 +---
 .../detection/components/HoltWintersDetector.java  |  31 +++++--
 .../PercentageChangeRuleAnomalyFilter.java         |  42 +++++----
 .../SitewideImpactRuleAnomalyFilter.java           |   8 +-
 .../PercentageChangeRuleAnomalyFilterSpec.java     |  20 ++++-
 .../thirdeye/detection/spi/model/TimeSeries.java   |   4 +
 .../detection/wrapper/AnomalyDetectorWrapper.java  |  27 ++++--
 .../yaml/CompositePipelineConfigTranslator.java    |  25 +++---
 .../thirdeye/detection/yaml/YamlResource.java      |  93 +++++++++++++++++++
 .../AbsoluteChangeRuleAnomalyFilterTest.java       |   8 +-
 .../PercentageChangeRuleAnomalyFilterTest.java     |  39 ++++++--
 .../SitewideImpactRuleAnomalyFilterTest.java       |   8 +-
 41 files changed, 545 insertions(+), 301 deletions(-)
 rename 
pinot-broker/src/test/java/org/apache/pinot/broker/routing/{TimeBoundaryServiceTest.java
 => HelixExternalViewBasedTimeBoundaryServiceTest.java} (72%)
 rename {pinot-filesystem => 
pinot-common}/src/main/java/org/apache/pinot/filesystem/LocalPinotFS.java (100%)
 rename {pinot-filesystem => 
pinot-common}/src/main/java/org/apache/pinot/filesystem/PinotFS.java (100%)
 rename {pinot-filesystem => 
pinot-common}/src/main/java/org/apache/pinot/filesystem/PinotFSFactory.java 
(100%)
 rename {pinot-filesystem => 
pinot-common}/src/test/java/org/apache/pinot/filesystem/LocalPinotFSTest.java 
(100%)
 rename {pinot-filesystem => 
pinot-common}/src/test/java/org/apache/pinot/filesystem/PinotFSFactoryTest.java 
(100%)
 delete mode 100644 pinot-filesystem/pom.xml
 create mode 100644 
thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/DetectionPipelineException.java


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to