This is an automated email from the ASF dual-hosted git repository.
xyuanlu pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/helix.git
from c607364c8 Fix TestClusterAggregateMetrics (#2602)
new 989c20c4b Add API for Instance evacuation (#2588)
new ba858b2a0 Implement the on-demand rebalance service (#2595)
new 059f1f60c Instance Evacuation operation sanity check (#2598)
new 7fe7d0a30 Add CI test config for ApplicationClusterManager branch
(#2605)
new eb62d1511 Add support for node evacuation. (#2604)
new 7ab07d034 Fix NPR error in test for
TestDelayedAutoRebalanceWithRackaware (#2606)
new a51c587f7 Add on-demand rebalance API (#2601)
new eff214d92 Change instance operation orthogonal to instance enable
(#2615)
new 96cd0d0e3 Add supporting APIs a isEvacuateFinished and
isReadyForPreparingJoiningCluster for evacuation. (#2618)
The 9 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:
.github/workflows/Helix-PR-CI.yml | 2 +-
.../apache/helix/constants/InstanceConstants.java | 6 +
.../src/main/java/org/apache/helix/HelixAdmin.java | 26 +
.../rebalancer/DelayedAutoRebalancer.java | 36 +-
.../rebalancer/util/DelayedRebalanceUtil.java | 80 +++-
.../org/apache/helix/manager/zk/ZKHelixAdmin.java | 124 ++++-
.../java/org/apache/helix/model/ClusterConfig.java | 27 +-
.../org/apache/helix/model/InstanceConfig.java | 20 +-
.../java/org/apache/helix/common/ZkTestBase.java | 8 +
.../TestDelayedAutoRebalance.java | 144 ++++++
...stDelayedAutoRebalanceWithDisabledInstance.java | 29 +-
.../TestDelayedAutoRebalanceWithRackaware.java | 14 +
.../rebalancer/TestInstanceOperation.java | 532 +++++++++++++++++++++
.../WagedRebalancer/TestDelayedWagedRebalance.java | 15 +
...tDelayedWagedRebalanceWithDisabledInstance.java | 15 +
.../java/org/apache/helix/mock/MockHelixAdmin.java | 23 +-
.../org/apache/helix/model/TestClusterConfig.java | 22 +
.../rest/server/resources/AbstractResource.java | 4 +-
.../server/resources/helix/ClusterAccessor.java | 9 +
.../server/resources/helix/InstancesAccessor.java | 1 +
.../resources/helix/PerInstanceAccessor.java | 4 +
.../helix/rest/server/TestClusterAccessor.java | 20 +
.../helix/rest/server/TestPerInstanceAccessor.java | 14 +
23 files changed, 1125 insertions(+), 50 deletions(-)
create mode 100644
helix-core/src/test/java/org/apache/helix/integration/rebalancer/TestInstanceOperation.java