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

[incubator-pinot] branch use-AhoCorasickDoubleArrayTrie updated (707cd28 -> cd9a617)

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

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


 discard 707cd28  Use AhoCorasickDoubleArrayTrie
 discard 9b53635  Add OnHeapTrieBasedStringDictionary
     new 044413f  Per User Dimension Alerter - consolidate across dimensions and send per user (#4135)
     new 6db8729  [TE] frontend - harleyjj/edit-alert - decouple alert and subscription configurations on edit alert (#4137)
     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 864457b  Add OnHeapTrieBasedStringDictionary
     new cd9a617  Use AhoCorasickDoubleArrayTrie

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   (707cd28)
            \
             N -- N -- N   refs/heads/use-AhoCorasickDoubleArrayTrie (cd9a617)

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 5994 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:
 .../client/JsonAsyncHttpPinotClientTransport.java  |   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/metadata/ZKMetadataProvider.java  |  98 +++++++------
 .../apache/pinot/common/utils/CommonConstants.java |  12 ++
 .../apache/pinot/common/utils/ServiceStatus.java   |  57 ++++----
 .../helix/core/PinotHelixResourceManager.java      |  14 +-
 .../core/realtime/PinotRealtimeSegmentManager.java |  16 +--
 .../pinot/integration/tests/ClusterTest.java       |   8 +-
 .../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 +-
 .../app/pods/components/yaml-editor/component.js   |  46 ++++--
 .../app/pods/components/yaml-editor/template.hbs   |  28 ++--
 .../api/user/dashboard/UserDashboardResource.java  | 157 ++++++++++++++-------
 .../thirdeye/dataframe/util/DataFrameUtils.java    |   3 +
 .../thirdeye/detection/DefaultDataProvider.java    |   6 +-
 .../detection/DetectionPipelineException.java      |  22 +++
 .../alert/DetectionAlertFilterRecipients.java      |  14 +-
 ...ilter.java => PerUserDimensionAlertFilter.java} |  58 +++++---
 .../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   |  49 +++++--
 .../detection/wrapper/AnomalyDetectorWrapper.java  |  27 +++-
 .../yaml/CompositePipelineConfigTranslator.java    |  25 ++--
 .../user/dashboard}/UserDashboardResourceTest.java |  58 ++++++--
 .../filter/DimensionDetectionAlertFilterTest.java  |   2 -
 ...t.java => PerUserDimensionAlertFilterTest.java} |  94 +++---------
 .../ToAllRecipientsDetectionAlertFilterTest.java   |  15 +-
 .../AbsoluteChangeRuleAnomalyFilterTest.java       |   8 +-
 .../components/HoltWintersDetectorTest.java        |   8 +-
 .../PercentageChangeRuleAnomalyFilterTest.java     |  39 +++--
 .../SitewideImpactRuleAnomalyFilterTest.java       |   8 +-
 .../wrapper/BaselineFillingMergeWrapperTest.java   |  17 ++-
 50 files changed, 1080 insertions(+), 587 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%)
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/DetectionPipelineException.java
 copy thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/alert/filter/{DimensionDetectionAlertFilter.java => PerUserDimensionAlertFilter.java} (73%)
 rename thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/{dashboard/resource/v2 => api/user/dashboard}/UserDashboardResourceTest.java (76%)
 copy thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/detection/alert/filter/{DimensionDetectionAlertFilterTest.java => PerUserDimensionAlertFilterTest.java} (61%)


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