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 2021/11/08 21:28:33 UTC

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

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

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


 discard bcad177  Fix the ConcurrentModificationException in ClusterEvent.java (#785)
    omit 6870a50  [maven-release-plugin] prepare for next development iteration
    omit 2e2ec42  [maven-release-plugin] prepare release helix-0.9.9
    omit bdba1fa  Revert "[maven-release-plugin] prepare release helix-0.9.9"
    omit 7f9f58f  Revert "[maven-release-plugin] prepare for next development iteration"
    omit 5507544  [maven-release-plugin] prepare for next development iteration
    omit a86fb91  [maven-release-plugin] prepare release helix-0.9.9
    omit 03b8511  Return "name" field as VM name in Azure environment (#1340)
    omit 192f582  Add REST API for cluster topology (#1416)
    omit 34359b0  Add TrieClusterTopology for retrieving hierarchical topology (#1307)
    omit fa75172  Minor fix to add participant auto registration
    omit 624adac  Change TestInstanceAutoJoin to adapt to cloud environment (#1265)
    omit db5b297  Fix ClusterAccessor::createCluster wrt CloudConfig (#937)
    omit a4c7245  Add REST and JAVA API to modify existing cloudconfig (#898)
    omit 03763dc  Change the REST call for delete CloudConfig  (#882)
    omit 6e0bb32  Add construction of domain in Helix participant logic (#876)
    omit a7f9b74  Change the cluster creation logic (#872)
    omit 41cdbcc  add one more test for auto registration (#806)
    omit fec3f40  Modify participant manager to add cluster auto registration logic (#695)
    omit 7eeaf4c  Implement Azure cloud instance information processor (#698)
    omit a8369e3  Add Helix properties factory and class (#653)
    omit 73edd83  Add REST API for Cluster Creation with CloudConfig (#675)
    omit bc9e33f  Add java API to create cluster with CloudConfig
    omit ff23b1b  add Helix cloud interface and implementation skeleton methods
    omit 813f968  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   (bcad177)

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-admin-webapp/pom.xml                         |   2 +-
 helix-agent/pom.xml                                |   2 +-
 helix-core/pom.xml                                 |   7 +-
 .../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/controller/stages/ClusterEvent.java      |   8 +-
 .../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 -
 .../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 ---
 .../helix/controller/stages/TestClusterEvent.java  |  44 +-
 .../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-front/pom.xml                                |   2 +-
 helix-rest/pom.xml                                 |   7 +-
 .../server/resources/helix/ClusterAccessor.java    | 176 +-------
 .../helix/rest/server/AbstractTestClass.java       |   5 +-
 .../helix/rest/server/TestClusterAccessor.java     | 468 +--------------------
 pom.xml                                            |   2 +-
 recipes/distributed-lock-manager/pom.xml           |   2 +-
 recipes/pom.xml                                    |   2 +-
 recipes/rabbitmq-consumer-group/pom.xml            |   2 +-
 recipes/rsync-replicated-file-system/pom.xml       |   2 +-
 recipes/service-discovery/pom.xml                  |   2 +-
 recipes/task-execution/pom.xml                     |   2 +-
 55 files changed, 90 insertions(+), 3497 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