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/04/17 00:53:49 UTC

[incubator-pinot] branch broker_starter updated (1b537cb -> ab01d7f)

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

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


 discard 1b537cb  Refactor HelixBrokerStarter to separate constructor and start()
     new e6f0341  Refactor ControllerLeaderManager by using dependency injection instead of singleton (#4054)
     new 5be8431  [TE] onboard dataset with epoch time stamps (#4094)
     new ead365e  [TE] frontend - harleyjj/anomalies - add message for no anomaly results (#4101)
     new 9612260  [TE] frontend - harleyjj/yaml-editor - user can create a new subscription group without a new alert (#4097)
     new c22a4ae  [TE] frontend - harleyjj/alert-overview - remove word Average in anomaly table (#4104)
     new 26330f3  [TE] frontend - harleyjj/alerts - filter alerts by single subscription group despite having multiple subscription groups (#4093)
     new a5777cd  Fix AddTenantCommand bug for posting tenant config (#4108)
     new 905688f  Fixing PerfBenchmarkDriver (#4109)
     new fd61e74  upgrade roaringbitmap to 0.8.0 (#4087)
     new 7ef519d  Fix description on Query Latency in the doc (#4111)
     new 2bb6a43  Add validations to table config before updating a table config (#4103)
     new 4cf1898  When refreshing the segment with identical segment, still update creation time and refresh time in ZK metadata (#4112)
     new 05bd234  Default PinotAdmin Commands to not use System.exit(...). (#4110)
     new 754a028  Set Helix flapping window for all components (#4105)
     new 443d49e  [TE] Mark some classes as deprecated (#4120)
     new 71de311  [TE] Fix MySQL and H2 timestamp automatic timezone conversion issues (#4113)
     new 88081bd  In ClusterChangeMediator, add stop flag check inside for loop and wait block (#4121)
     new 45521f8  [TE] frontend - harleyjj/preview - fix preview error notification toast (#4123)
     new dab44a6  [TE] Remove migrator, partial reference and legacy alert (#4124)
     new 24c7a8e  [TE] Fix the dimension values that contain dot in it (#4125)
     new 6cd8657  [TE] Holt Winters detector (#4067)
     new c674e72  [TE] adjustment on Yaml configurations (#4122)
     new 945a167  [TE] add time format for MySQL: yyyy-mm-dd hh:mm:ss.S (#4126)
     new 79b3368  Remove redundant default broker configurations (#4106)
     new ab01d7f  Refactor HelixBrokerStarter to separate constructor and start()

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   (1b537cb)
            \
             N -- N -- N   refs/heads/broker_starter (ab01d7f)

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 5966 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/in_production.rst                             |    6 +-
 .../broker/broker/helix/ClusterChangeHandler.java  |    6 +
 .../broker/broker/helix/ClusterChangeMediator.java |    8 +-
 .../broker/broker/helix/HelixBrokerStarter.java    |  176 +-
 .../broker/helix/LiveInstanceChangeHandler.java    |    9 +-
 .../broker/queryquota/TableQueryQuotaManager.java  |   28 +-
 .../routing/HelixExternalViewBasedRouting.java     |   48 +-
 .../broker/broker/HelixBrokerStarterTest.java      |   12 +-
 .../queryquota/TableQueryQuotaManagerTest.java     |    3 +-
 .../broker/routing/RandomRoutingTableTest.java     |    2 +-
 .../pinot/broker/routing/RoutingTableTest.java     |   34 +-
 .../apache/pinot/common/utils/CommonConstants.java |   31 +-
 .../controller/ControllerLeadershipManager.java    |   24 +-
 .../apache/pinot/controller/ControllerStarter.java |   54 +-
 .../PinotSegmentUploadRestletResource.java         |    6 +-
 .../api/resources/PinotTableRestletResource.java   |    7 +-
 .../controller/api/upload/SegmentValidator.java    |    9 +-
 .../pinot/controller/api/upload/ZKOperator.java    |    8 +-
 .../helix/core/PinotHelixResourceManager.java      |  160 +-
 .../ControllerPeriodicTaskScheduler.java           |    5 +-
 .../realtime/PinotLLCRealtimeSegmentManager.java   |   20 +-
 .../core/realtime/PinotRealtimeSegmentManager.java |    8 +-
 .../core/realtime/SegmentCompletionManager.java    |   10 +-
 .../controller/validation/StorageQuotaChecker.java |    7 +-
 .../helix/core/PinotHelixResourceManagerTest.java  |  166 +-
 .../PinotLLCRealtimeSegmentManagerTest.java        |   65 +-
 .../helix/core/realtime/SegmentCompletionTest.java |   65 +-
 .../validation/StorageQuotaCheckerTest.java        |   17 +-
 .../core/operator/docidsets/BitmapDocIdSet.java    |    5 +-
 .../core/common/docidsets/BitmapDocIdSetTest.java  |   12 +-
 .../tests/BaseClusterIntegrationTest.java          |   11 +
 .../pinot/integration/tests/ClusterTest.java       |   25 +-
 .../tests/OfflineClusterIntegrationTest.java       |   29 +
 .../tests/RealtimeClusterIntegrationTest.java      |    7 +-
 .../org/apache/pinot/minion/MinionStarter.java     |   11 +
 .../helix/DefaultHelixStarterServerConfig.java     |    3 -
 .../server/starter/helix/HelixServerStarter.java   |   28 +-
 .../pinot/tools/admin/PinotAdministrator.java      |   12 +-
 .../tools/admin/command/AddTenantCommand.java      |    4 +-
 .../tools/admin/command/StartBrokerCommand.java    |   12 +-
 .../pinot/tools/perf/PerfBenchmarkDriver.java      |   56 +-
 .../pinot/tools/perf/PerfBenchmarkDriverConf.java  |   10 +-
 pom.xml                                            |    2 +-
 .../app/pods/anomalies/controller.js               |    7 +
 .../app/pods/anomalies/template.hbs                |  140 +-
 .../app/pods/components/alert-details/component.js |    2 +-
 .../app/pods/components/alert-details/template.hbs |    2 +-
 .../pods/components/anomaly-summary/template.hbs   |    2 +-
 .../app/pods/components/yaml-editor/component.js   |   66 +-
 .../app/pods/manage/alerts/index/controller.js     |   30 +-
 .../app/pods/manage/alerts/index/route.js          |   50 +-
 .../app/pods/manage/explore/route.js               |   36 +-
 .../self-serve/import-sql-metric/controller.js     |    6 +-
 .../styles/components/range-pill-selectors.scss    |    1 +
 thirdeye/thirdeye-frontend/app/utils/constants.js  |   36 +-
 .../pods/components/yaml-editor/component-test.js  |   50 +-
 .../anomaly/alert/v2/AlertJobRunnerV2.java         |    1 +
 .../anomaly/alert/v2/AlertJobSchedulerV2.java      |    1 +
 .../anomaly/alert/v2/AlertTaskRunnerV2.java        |    1 +
 .../anomaly/detection/DetectionJobScheduler.java   |    1 +
 .../anomaly/detection/DetectionTaskRunner.java     |    1 +
 .../anomaly/onboard/DetectionOnboardResource.java  |    1 +
 .../thirdeye/anomaly/onboard/ReplayTaskInfo.java   |    1 +
 .../thirdeye/anomaly/onboard/ReplayTaskRunner.java |    1 +
 .../onboard/AutoOnboardPinotMetadataSource.java    |    3 -
 .../thirdeye/auto/onboard/ConfigGenerator.java     |   16 +-
 .../dashboard/ThirdEyeDashboardApplication.java    |    6 -
 .../dashboard/resources/AutoOnboardResource.java   |    5 +
 .../dashboard/resources/DetectionJobResource.java  |    1 +
 .../dashboard/resources/OnboardResource.java       |    1 +
 .../datalayer/pojo/DetectionAlertConfigBean.java   |   14 +-
 .../datasource/pinot/PinotThirdEyeDataSource.java  |    4 +-
 .../pinot/resultset/ThirdEyeResultSetUtils.java    |   23 +-
 .../datasource/sql/SqlResponseCacheLoader.java     |    2 +-
 .../datasource/sql/SqlThirdEyeDataSource.java      |   11 +-
 .../sql/resources/SqlDataSourceResource.java       |    2 +-
 .../pinot/thirdeye/detection/DataProvider.java     |   12 -
 .../thirdeye/detection/DefaultDataProvider.java    |    5 -
 .../detection/DetectionMigrationResource.java      |  730 -----
 .../alert/StatefulDetectionAlertFilter.java        |    6 +-
 .../detection/alert/filter/LegacyAlertFilter.java  |  143 -
 .../detection/components/HoltWintersDetector.java  |  570 ++++
 .../detection/spec/HoltWintersDetectorSpec.java    |   89 +
 .../detection/wrapper/AnomalyDetectorWrapper.java  |   12 -
 .../yaml/CompositePipelineConfigTranslator.java    |    7 +-
 .../yaml/YamlDetectionAlertConfigTranslator.java   |    3 -
 .../yaml/YamlDetectionConfigTranslator.java        |   21 +-
 .../yaml/YamlDetectionTranslatorLoader.java        |    5 +-
 .../thirdeye/detection/yaml/YamlResource.java      |    5 +-
 .../AutoOnboardPinotMetricsServiceTest.java        |   10 +-
 .../detection/DetectionMigrationResourceTest.java  |  294 --
 .../pinot/thirdeye/detection/MockDataProvider.java |    6 -
 .../alert/filter/LegacyAlertFilterTest.java        |  110 -
 .../ToAllRecipientsDetectionAlertFilterTest.java   |   10 -
 .../components/HoltWintersDetectorTest.java        |  159 ++
 .../PercentageChangeRuleDetectorTest.java          |    1 -
 .../YamlDetectionAlertConfigTranslatorTest.java    |    1 -
 .../pinot/thirdeye/detection/algorithm/daily.csv   |  732 +++++
 .../pinot/thirdeye/detection/algorithm/hourly.csv  | 3000 ++++++++++++++++++++
 .../compositePipelineTranslatorTestResult-1.json   |    2 +
 .../compositePipelineTranslatorTestResult-2.json   |    1 +
 101 files changed, 5613 insertions(+), 2066 deletions(-)
 delete mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/DetectionMigrationResource.java
 delete mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/alert/filter/LegacyAlertFilter.java
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/components/HoltWintersDetector.java
 create mode 100644 thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/detection/spec/HoltWintersDetectorSpec.java
 delete mode 100644 thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/detection/DetectionMigrationResourceTest.java
 delete mode 100644 thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/detection/alert/filter/LegacyAlertFilterTest.java
 create mode 100644 thirdeye/thirdeye-pinot/src/test/java/org/apache/pinot/thirdeye/detection/components/HoltWintersDetectorTest.java
 create mode 100644 thirdeye/thirdeye-pinot/src/test/resources/org/apache/pinot/thirdeye/detection/algorithm/daily.csv
 create mode 100644 thirdeye/thirdeye-pinot/src/test/resources/org/apache/pinot/thirdeye/detection/algorithm/hourly.csv


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