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

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


 discard b4e1368  Building with 0.8.4
     new 8775352  fix non-engish field value gibberish (#4128)
     new 96752f7  [TE] Early termination if there are no 'to' recipients (#4145)
     new 083b288  In ServiceStatus, do not log anything if all resources are up 
(#4141)
     new 937ecb4  Add upper lower bounds (#4147)
     new 983c5d8  [TE] Update TE-Raptor API to support multiple metrics (#4140)
     new 955748b  [TE] Fix for TimeSeries constructor (#4150)
     new d403a28  [TE] frontend - harleyjj/anomalies - make anomalies 
filterable by subscription group (#4131)
     new 308f53b  [TE] fix Holt-Winters standard deviation calculation (#4153)
     new b6ecc83  [TE] support monitoring granularity for Holt Winters (#4149)
     new 0328662  Decouple BrokerServerBuilder from Helix (#4144)
     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 db1ac86  Building with 0.8.4

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   (b4e1368)
            \
             N -- N -- N   refs/heads/helix084 (db1ac86)

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
 .../client/JsonAsyncHttpPinotClientTransport.java  |   6 +-
 pinot-azure-filesystem/pom.xml                     |   6 -
 .../pinot/broker/broker/BrokerServerBuilder.java   |  51 +++----
 ...okerResourceOnlineOfflineStateModelFactory.java |  16 +--
 .../broker/broker/helix/HelixBrokerStarter.java    |  91 ++++++------
 ...> HelixExternalViewBasedQueryQuotaManager.java} |  12 +-
 .../pinot/broker/queryquota/QueryQuotaManager.java |  13 +-
 .../requesthandler/BaseBrokerRequestHandler.java   |  18 +--
 .../ConnectionPoolBrokerRequestHandler.java        |  15 +-
 .../SingleConnectionBrokerRequestHandler.java      |   6 +-
 ...lixExternalViewBasedQueryQuotaManagerTest.java} |  98 ++++++-------
 pinot-common/pom.xml                               |   4 -
 .../pinot/common/metadata/ZKMetadataProvider.java  |  98 +++++++------
 .../apache/pinot/common/utils/CommonConstants.java |  12 ++
 .../apache/pinot/common/utils/ServiceStatus.java   |  57 ++++----
 .../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 -
 .../pinot/integration/tests/ClusterTest.java       |   8 +-
 pom.xml                                            |   6 -
 .../app/pods/anomalies/controller.js               |  80 +++++++++--
 .../thirdeye-frontend/app/pods/anomalies/route.js  |  26 +++-
 .../app/pods/anomalies/template.hbs                |   2 +
 .../app/pods/components/entity-filter/component.js |   9 ++
 .../app/pods/components/entity-filter/template.hbs |   8 +-
 .../api/user/dashboard/UserDashboardResource.java  | 157 ++++++++++++++-------
 .../dashboard/resources/v2/AnomaliesResource.java  |  13 +-
 .../thirdeye/dataframe/util/DataFrameUtils.java    |   4 +
 .../thirdeye/detection/DefaultDataProvider.java    |   6 +-
 .../detection/DetectionPipelineException.java      |  22 +++
 .../alert/DetectionAlertFilterRecipients.java      |  14 +-
 .../ToAllRecipientsDetectionAlertFilter.java       |  33 +++--
 .../detection/algorithm/DimensionWrapper.java      |  48 +++++--
 .../annotation/registry/DetectionRegistry.java     |  37 +++--
 .../AbsoluteChangeRuleAnomalyFilter.java           |  18 +--
 .../detection/components/HoltWintersDetector.java  | 111 ++++++++++++---
 .../PercentageChangeRuleAnomalyFilter.java         |  42 +++---
 .../SitewideImpactRuleAnomalyFilter.java           |   8 +-
 .../detection/spec/HoltWintersDetectorSpec.java    |  10 ++
 .../PercentageChangeRuleAnomalyFilterSpec.java     |  20 ++-
 .../thirdeye/detection/spi/model/TimeSeries.java   |  53 +++++--
 .../detection/wrapper/AnomalyDetectorWrapper.java  |  27 +++-
 .../yaml/CompositePipelineConfigTranslator.java    |  25 ++--
 .../thirdeye/detection/yaml/YamlResource.java      |  93 ++++++++++++
 .../user/dashboard}/UserDashboardResourceTest.java |  58 ++++++--
 .../ToAllRecipientsDetectionAlertFilterTest.java   |  15 +-
 .../AbsoluteChangeRuleAnomalyFilterTest.java       |   8 +-
 .../components/HoltWintersDetectorTest.java        |   8 +-
 .../PercentageChangeRuleAnomalyFilterTest.java     |  39 +++--
 .../SitewideImpactRuleAnomalyFilterTest.java       |   8 +-
 .../wrapper/BaselineFillingMergeWrapperTest.java   |  17 ++-
 64 files changed, 1110 insertions(+), 597 deletions(-)
 rename 
pinot-broker/src/main/java/org/apache/pinot/broker/queryquota/{TableQueryQuotaManager.java
 => HelixExternalViewBasedQueryQuotaManager.java} (97%)
 copy 
pinot-core/src/main/java/org/apache/pinot/core/segment/creator/SingleValueForwardIndexCreator.java
 => 
pinot-broker/src/main/java/org/apache/pinot/broker/queryquota/QueryQuotaManager.java
 (72%)
 rename 
pinot-broker/src/test/java/org/apache/pinot/broker/queryquota/{TableQueryQuotaManagerTest.java
 => HelixExternalViewBasedQueryQuotaManagerTest.java} (79%)
 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
 rename 
thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/{dashboard/resource/v2
 => api/user/dashboard}/UserDashboardResourceTest.java (76%)


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

Reply via email to