This is an automated email from the ASF dual-hosted git repository. jiajunwang pushed a commit to branch topStatePOC in repository https://gitbox.apache.org/repos/asf/helix.git
commit c67896fb89c58d8ad2de599edc69da4e1f341ce1 Author: Neal Sun <[email protected]> AuthorDate: Wed Nov 25 10:15:35 2020 -0800 bug fix --- .../rebalancer/waged/constraints/ConstraintBasedAlgorithmFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-core/src/main/java/org/apache/helix/controller/rebalancer/waged/constraints/ConstraintBasedAlgorithmFactory.java b/helix-core/src/main/java/org/apache/helix/controller/rebalancer/waged/constraints/ConstraintBasedAlgorithmFactory.java index 237d16c..b0da403 100644 --- a/helix-core/src/main/java/org/apache/helix/controller/rebalancer/waged/constraints/ConstraintBasedAlgorithmFactory.java +++ b/helix-core/src/main/java/org/apache/helix/controller/rebalancer/waged/constraints/ConstraintBasedAlgorithmFactory.java @@ -69,7 +69,7 @@ public class ConstraintBasedAlgorithmFactory { List<SoftConstraint> softConstraints = ImmutableList .of(new PartitionMovementConstraint(), new InstancePartitionsCountConstraint(), new ResourcePartitionAntiAffinityConstraint(), - new ResourceTopStateAntiAffinityConstraint(), new MaxCapacityUsageInstanceConstraint()); + new ResourceTopStateUsageConstraint(), new MaxCapacityUsageInstanceConstraint()); Map<SoftConstraint, Float> softConstraintsWithWeight = Maps.toMap(softConstraints, key -> { String name = key.getClass().getSimpleName(); float weight = MODEL.get(name);
