You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by jx...@apache.org on 2020/04/14 02:00:16 UTC

[helix] branch helix-cloud updated (f0a7b89 -> b9a6c54)

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

jxue pushed a change to branch helix-cloud
in repository https://gitbox.apache.org/repos/asf/helix.git.


 discard f0a7b89  Add REST and JAVA API to modify existing cloudconfig (#898)
    omit 2104a89  Change the REST call for delete CloudConfig  (#882)
    omit 89c60fe  Add construction of domain in Helix participant logic (#876)
    omit ba7ced1  Change the cluster creation logic (#872)
    omit 67a182d  add one more test for auto registration (#806)
    omit 4a82b96  Modify participant manager to add cluster auto registration logic (#695)
    omit 0e31492  Implement Azure cloud instance information processor (#698)
    omit 10ee359  Add Helix properties factory and class (#653)
    omit 2508d48  Add REST API for Cluster Creation with CloudConfig (#675)
    omit 6f869e8  Add java API to create cluster with CloudConfig

This update removed existing revisions from the reference, leaving the
reference pointing at a previous point in the repository history.

 * -- * -- N   refs/heads/helix-cloud (b9a6c54)
            \
             O -- O -- O   (f0a7b89)

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 helix-core/pom.xml                                 |   5 -
 .../main/java/org/apache/helix/ConfigAccessor.java |  44 +--
 .../src/main/java/org/apache/helix/HelixAdmin.java |  15 +-
 .../java/org/apache/helix/HelixCloudProperty.java  | 183 -----------
 .../java/org/apache/helix/HelixManagerFactory.java |   2 +-
 .../org/apache/helix/HelixManagerProperty.java     |  74 -----
 .../org/apache/helix/HelixPropertyFactory.java     |  79 -----
 .../java/org/apache/helix/SystemPropertyKeys.java  |   8 -
 .../cloud/CloudInstanceInformationProcessor.java   |   1 +
 .../cloud/azure/AzureCloudInstanceInformation.java |  29 +-
 .../AzureCloudInstanceInformationProcessor.java    | 118 +------
 .../apache/helix/cloud/azure/AzureConstants.java   |   6 -
 .../helix/manager/zk/ParticipantManager.java       | 110 ++-----
 .../org/apache/helix/manager/zk/ZKHelixAdmin.java  |  28 --
 .../apache/helix/manager/zk/ZKHelixManager.java    |  17 +-
 .../java/org/apache/helix/model/CloudConfig.java   | 135 +++++---
 .../java/org/apache/helix/tools/ClusterSetup.java  |  28 +-
 .../main/java/org/apache/helix/util/HelixUtil.java |  19 --
 .../src/main/resources/azure-cloud.properties      |  25 --
 .../src/main/resources/helix-manager.properties    |  24 --
 .../java/org/apache/helix/TestConfigAccessor.java  | 112 +------
 .../org/apache/helix/cloud/MockHttpClient.java     |  53 ---
 ...TestAzureCloudInstanceInformationProcessor.java |  69 ----
 .../manager/MockParticipantManager.java            |  10 +-
 .../paticipant/TestInstanceAutoJoin.java           |  62 +---
 .../apache/helix/manager/zk/TestZkHelixAdmin.java  |  69 ----
 .../java/org/apache/helix/mock/MockHelixAdmin.java |  11 -
 .../apache/helix/model/cloud/TestCloudConfig.java  |  60 ++--
 .../org/apache/helix/tools/TestClusterSetup.java   | 100 +-----
 helix-core/src/test/resources/AzureResponse.json   | 104 ------
 helix-rest/pom.xml                                 |   5 +
 .../server/resources/helix/ClusterAccessor.java    | 153 +--------
 .../helix/rest/server/TestClusterAccessor.java     | 364 ---------------------
 33 files changed, 195 insertions(+), 1927 deletions(-)
 delete mode 100644 helix-core/src/main/java/org/apache/helix/HelixCloudProperty.java
 delete mode 100644 helix-core/src/main/java/org/apache/helix/HelixManagerProperty.java
 delete mode 100644 helix-core/src/main/java/org/apache/helix/HelixPropertyFactory.java
 delete mode 100644 helix-core/src/main/java/org/apache/helix/cloud/azure/AzureConstants.java
 delete mode 100644 helix-core/src/main/resources/azure-cloud.properties
 delete mode 100644 helix-core/src/main/resources/helix-manager.properties
 delete mode 100644 helix-core/src/test/java/org/apache/helix/cloud/MockHttpClient.java
 delete mode 100644 helix-core/src/test/java/org/apache/helix/cloud/TestAzureCloudInstanceInformationProcessor.java
 delete mode 100644 helix-core/src/test/resources/AzureResponse.json