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/18 03:54:19 UTC

[incubator-pinot] branch clean-up-singleton updated (9f96eb5 -> 80c25d3)

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

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


 discard 9f96eb5  Remove singleton for PinotLLCRealtimeSegmentManager and SegmentCompletionManager
     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 20c2b15  [TE] frontend - harleyjj/home - get all anomalies by subscription group (#4118)
     new d889dbd  Add getter method for getting ControllerLeadershipManager (#4129)
     new e32a5b1  Add ControllerPeriodicTask integration tests (#4130)
     new 0839fb1  Refactor HelixBrokerStarter to separate constructor and start() (#4100)
     new 191255b  Improve partition aware routing when a server is down. (#4119)
     new c0120d7  Admin tool for listing segments with invalid intervals for offline tables (#4117)
     new 80c25d3  Remove singleton for PinotLLCRealtimeSegmentManager and SegmentCompletionManager

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   (9f96eb5)
            \
             N -- N -- N   refs/heads/clean-up-singleton (80c25d3)

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 5972 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:
 .../pinot/broker/broker/BrokerServerBuilder.java   |   7 +-
 .../broker/broker/helix/ClusterChangeHandler.java  |  10 +
 .../broker/helix/DefaultHelixBrokerConfig.java     |  54 ---
 .../broker/broker/helix/HelixBrokerStarter.java    | 393 +++++++++----------
 .../broker/helix/LiveInstanceChangeHandler.java    |  10 +-
 .../broker/queryquota/TableQueryQuotaManager.java  |  29 +-
 .../routing/HelixExternalViewBasedRouting.java     |  49 +--
 .../BasePartitionAwareRoutingTableBuilder.java     |  47 ++-
 .../pinot/broker/broker/BrokerTestUtils.java       |  51 ---
 .../broker/broker/HelixBrokerStarterTest.java      |  34 +-
 .../broker/broker/HelixBrokerStarterUtilsTest.java |  63 ---
 .../queryquota/TableQueryQuotaManagerTest.java     |   3 +-
 .../broker/routing/RandomRoutingTableTest.java     |   5 +-
 .../pinot/broker/routing/RoutingTableTest.java     |  36 +-
 ...rtitionAwareOfflineRoutingTableBuilderTest.java |  79 ++++
 .../pinot/common/config/TableNameBuilder.java      |   7 +
 .../apache/pinot/common/utils/CommonConstants.java |   2 +
 .../apache/pinot/controller/ControllerConf.java    |  12 +
 .../apache/pinot/controller/ControllerStarter.java |  25 +-
 .../realtime/PinotLLCRealtimeSegmentManager.java   |  49 +--
 .../core/realtime/SegmentCompletionManager.java    |   8 +-
 .../core/relocation/RealtimeSegmentRelocator.java  |   2 +-
 .../controller/util/SegmentIntervalUtils.java      |  74 ++++
 .../validation/OfflineSegmentIntervalChecker.java  |  33 +-
 .../PinotLLCRealtimeSegmentManagerTest.java        |  45 ++-
 .../helix/core/realtime/SegmentCompletionTest.java |  28 +-
 .../tests/BaseClusterIntegrationTest.java          |  15 +
 .../pinot/integration/tests/ClusterTest.java       |  46 ++-
 .../ControllerPeriodicTasksIntegrationTests.java   | 422 +++++++++++++++++++++
 .../tests/HybridClusterIntegrationTest.java        |  10 +-
 .../tests/NewConfigApplyIntegrationTest.java       |   3 +-
 .../tests/RealtimeClusterIntegrationTest.java      |  12 +-
 .../tasks/SegmentStatusCheckerIntegrationTest.java | 288 --------------
 .../server/starter/helix/HelixServerStarter.java   |   3 +-
 .../pinot/tools/admin/PinotAdministrator.java      |   3 +-
 .../OfflineSegmentIntervalCheckerCommand.java      | 150 ++++++++
 .../tools/admin/command/StartBrokerCommand.java    |  24 +-
 .../pinot/tools/perf/PerfBenchmarkDriver.java      |   9 +-
 .../app/adapters/subscription-groups.js            |  10 +
 .../{application.js => subscription-groups.js}     |   7 +-
 .../app/pods/home/index/controller.js              |  62 ++-
 .../thirdeye-frontend/app/pods/home/index/route.js |  45 ++-
 .../app/pods/home/index/template.hbs               |  53 ++-
 .../self-serve/import-sql-metric/controller.js     |   2 +-
 .../app/pods/services/api/anomalies/service.js     |  73 +++-
 .../app/styles/pods/home/index/dashboard.scss      |  10 +-
 thirdeye/thirdeye-frontend/app/utils/constants.js  |  36 +-
 .../pods/components/yaml-editor/component-test.js  |   2 +-
 .../yaml/CompositePipelineConfigTranslator.java    |   4 +-
 .../yaml/YamlDetectionConfigTranslator.java        |  21 +-
 .../yaml/YamlDetectionTranslatorLoader.java        |   5 +-
 .../thirdeye/detection/yaml/YamlResource.java      |   4 +
 .../compositePipelineTranslatorTestResult-1.json   |   2 +
 .../compositePipelineTranslatorTestResult-2.json   |   1 +
 54 files changed, 1495 insertions(+), 982 deletions(-)
 delete mode 100644 pinot-broker/src/main/java/org/apache/pinot/broker/broker/helix/DefaultHelixBrokerConfig.java
 delete mode 100644 pinot-broker/src/test/java/org/apache/pinot/broker/broker/BrokerTestUtils.java
 delete mode 100644 pinot-broker/src/test/java/org/apache/pinot/broker/broker/HelixBrokerStarterUtilsTest.java
 create mode 100644 pinot-controller/src/main/java/org/apache/pinot/controller/util/SegmentIntervalUtils.java
 create mode 100644 pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/ControllerPeriodicTasksIntegrationTests.java
 delete mode 100644 pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/controller/periodic/tasks/SegmentStatusCheckerIntegrationTest.java
 create mode 100644 pinot-tools/src/main/java/org/apache/pinot/tools/admin/command/OfflineSegmentIntervalCheckerCommand.java
 create mode 100644 thirdeye/thirdeye-frontend/app/adapters/subscription-groups.js
 copy thirdeye/thirdeye-frontend/app/models/{application.js => subscription-groups.js} (58%)


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