Add some test clean up logic for after tests

  1. TestInstanceOperation.java (line 175)
    - Added missing deleteCluster(CLUSTER_NAME) in @AfterClass
  2. TestTopologyMigration.java (line 130)
    - Added missing deleteCluster(CLUSTER_NAME) in @AfterClass
  3. TestCustomizedViewAggregation.java (lines 71, 95, 172)
    - Added _clusterName field to store cluster name
    - Updated @BeforeClass to use _clusterName
    - Added deleteCluster(_clusterName) in @AfterClass
3 files changed
tree: 03ffb9e7154936b0077a5e474718385a2b33cff9
  1. .github/
  2. helix-admin-webapp/
  3. helix-agent/
  4. helix-common/
  5. helix-core/
  6. helix-front/
  7. helix-gateway/
  8. helix-lock/
  9. helix-rest/
  10. helix-view-aggregator/
  11. meta-client/
  12. metadata-store-directory-common/
  13. metrics-common/
  14. recipes/
  15. scripts/
  16. website/
  17. zookeeper-api/
  18. .gitignore
  19. build
  20. bump-snapshot-mac.sh
  21. bump-snapshot.sh
  22. bump-up.sh
  23. deploySite.sh
  24. helix-style-intellij.xml
  25. helix-style.xml
  26. hpost-review.sh
  27. LICENSE
  28. NOTICE
  29. pom.xml
  30. README.md
README.md

Apache Helix

Helix CI Maven Central License codecov.io Flaky Tests Track

Helix Logo

Helix is part of the Apache Software Foundation.

Project page: http://helix.apache.org/

Mailing list: http://helix.apache.org/mail-lists.html

Build

mvn clean install -Dmaven.test.skip.exec=true

WHAT IS HELIX

Helix is a generic cluster management framework used for automatic management of partitioned, replicated and distributed resources hosted on a cluster of nodes. Helix provides the following features:

  1. Automatic assignment of resource/partition to nodes
  2. Node failure detection and recovery
  3. Dynamic addition of Resources
  4. Dynamic addition of nodes to the cluster
  5. Pluggable distributed state machine to manage the state of a resource via state transitions
  6. Automatic load balancing and throttling of transitions

Dependencies

Helix UI has been tested to run well on these versions of node and yarn:

  "engines": {
    "node": "~14.17.5",
    "yarn": "^1.22.18"
  },