You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by ji...@apache.org on 2020/11/18 19:12:10 UTC

[helix] branch helix-0.9.x updated (681fdbb -> 615af36)

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

jiajunwang pushed a change to branch helix-0.9.x
in repository https://gitbox.apache.org/repos/asf/helix.git.


 discard 681fdbb  Return "name" field as VM name in Azure environment (#1340)
 discard 790e158  Add REST API for cluster topology (#1416)
 discard bdcb37a  Add TrieClusterTopology for retrieving hierarchical topology (#1307)
 discard 35bbc7c  Minor fix to add participant auto registration
 discard ef5722e  Change TestInstanceAutoJoin to adapt to cloud environment (#1265)
 discard acebdae  Fix ClusterAccessor::createCluster wrt CloudConfig (#937)
 discard 980fbd1  Add REST and JAVA API to modify existing cloudconfig (#898)
 discard 90c9e25  Change the REST call for delete CloudConfig  (#882)
 discard 3a11313  Add construction of domain in Helix participant logic (#876)
 discard 2ee9d3c  Change the cluster creation logic (#872)
 discard c80fdb3  add one more test for auto registration (#806)
 discard ffe55cc  Modify participant manager to add cluster auto registration logic (#695)
 discard da32e4e  Implement Azure cloud instance information processor (#698)
 discard bc3dd83  Add Helix properties factory and class (#653)
 discard ffe8eea  Add REST API for Cluster Creation with CloudConfig (#675)
 discard eb6c51a  Add java API to create cluster with CloudConfig
 discard 4286e2f  add Helix cloud interface and implementation skeleton methods
 discard 6800dc3  Add CloudConfig code

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

 * -- * -- N   refs/heads/helix-0.9.x (615af36)
            \
             O -- O -- O   (681fdbb)

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 |  65 +--
 .../src/main/java/org/apache/helix/HelixAdmin.java |  21 -
 .../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     |  87 ----
 .../main/java/org/apache/helix/PropertyKey.java    |  11 -
 .../java/org/apache/helix/SystemPropertyKeys.java  |   8 -
 .../helix/api/cloud/CloudInstanceInformation.java  |  40 --
 .../cloud/CloudInstanceInformationProcessor.java   |  40 --
 .../apache/helix/api/topology/ClusterTopology.java | 192 ---------
 .../cloud/azure/AzureCloudInstanceInformation.java |  72 ----
 .../AzureCloudInstanceInformationProcessor.java    | 160 -------
 .../apache/helix/cloud/azure/AzureConstants.java   |   6 -
 .../helix/cloud/constants/CloudProvider.java       |  25 --
 .../helix/manager/zk/ParticipantManager.java       | 110 +----
 .../org/apache/helix/manager/zk/ZKHelixAdmin.java  |  48 ---
 .../apache/helix/manager/zk/ZKHelixManager.java    |  17 +-
 .../java/org/apache/helix/model/CloudConfig.java   | 263 ------------
 .../java/org/apache/helix/model/ClusterTrie.java   | 227 ----------
 .../org/apache/helix/model/HelixConfigScope.java   |   6 +-
 .../main/java/org/apache/helix/model/TrieNode.java |  56 ---
 .../model/builder/HelixConfigScopeBuilder.java     |   3 -
 .../java/org/apache/helix/tools/ClusterSetup.java  |  28 +-
 .../main/java/org/apache/helix/util/HelixUtil.java |  19 -
 .../apache/helix/util/InstanceValidationUtil.java  |  14 +-
 .../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           |  69 +--
 .../apache/helix/manager/zk/TestZkHelixAdmin.java  | 145 +------
 .../java/org/apache/helix/mock/MockHelixAdmin.java |  17 -
 .../org/apache/helix/model/TestClusterTrie.java    | 141 -------
 .../apache/helix/model/cloud/TestCloudConfig.java  | 224 ----------
 .../org/apache/helix/tools/TestClusterSetup.java   |  96 +----
 helix-core/src/test/resources/AzureResponse.json   | 104 -----
 helix-rest/pom.xml                                 |   5 +
 .../server/resources/helix/ClusterAccessor.java    | 176 +-------
 .../helix/rest/server/AbstractTestClass.java       |   5 +-
 .../helix/rest/server/TestClusterAccessor.java     | 468 +--------------------
 44 files changed, 73 insertions(+), 3452 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/api/cloud/CloudInstanceInformation.java
 delete mode 100644 helix-core/src/main/java/org/apache/helix/api/cloud/CloudInstanceInformationProcessor.java
 delete mode 100644 helix-core/src/main/java/org/apache/helix/api/topology/ClusterTopology.java
 delete mode 100644 helix-core/src/main/java/org/apache/helix/cloud/azure/AzureCloudInstanceInformation.java
 delete mode 100644 helix-core/src/main/java/org/apache/helix/cloud/azure/AzureCloudInstanceInformationProcessor.java
 delete mode 100644 helix-core/src/main/java/org/apache/helix/cloud/azure/AzureConstants.java
 delete mode 100644 helix-core/src/main/java/org/apache/helix/cloud/constants/CloudProvider.java
 delete mode 100644 helix-core/src/main/java/org/apache/helix/model/CloudConfig.java
 delete mode 100644 helix-core/src/main/java/org/apache/helix/model/ClusterTrie.java
 delete mode 100644 helix-core/src/main/java/org/apache/helix/model/TrieNode.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/java/org/apache/helix/model/TestClusterTrie.java
 delete mode 100644 helix-core/src/test/java/org/apache/helix/model/cloud/TestCloudConfig.java
 delete mode 100644 helix-core/src/test/resources/AzureResponse.json