This is an automated email from the ASF dual-hosted git repository.
xyuanlu pushed a change to branch ApplicationClusterManager
in repository https://gitbox.apache.org/repos/asf/helix.git
discard 311b311d9 Change canCompleteSwap and completeSwapIfPossible to return
json with kv pair for result of check or attempt to complete swap. (#2697)
omit 809657a07 Enhanced stoppable checks with node evacuation filtering and
introduced blacklisting capabilities (#2687)
omit 7613cabf0 HelixAdmin APIs and pipeline changes to support Helix Node
Swap (#2661)
omit 4552f87e5 Implement the cross-zone-based stoppable check (#2680)
omit 9f4000611 Refactor stoppable check logic for enhanced zone analysis
(#2654)
add 937d50673 add keyfile and certfile to request options (#2672)
add 4738f6dd2 [apache/helix] -- Fixes #2638, Improve Hard Constraint
Failure Debuggability by adding details in the error message (#2639)
add 7da0ddbe6 Follow up change: NPE in IntermediateStateCalc (#2673)
add bd1d28c52 [apache/helix] -- Fixes #2646 (Part-1), Optimize
WagedInstanceCapacity Calculation to improve Helix Controller Pipeline (#2649)
add 7f2a88df1 Fix condition to check if DOMAIN has all required TOPOLOGY
keys and allows for extra kv pairs, to reduce noisy logs. (#2688)
new bd67a8fdc Refactor stoppable check logic for enhanced zone analysis
(#2654)
new e88fec884 Implement the cross-zone-based stoppable check (#2680)
new 32fb09218 HelixAdmin APIs and pipeline changes to support Helix Node
Swap (#2661)
new 58cccf5ce Enhanced stoppable checks with node evacuation filtering and
introduced blacklisting capabilities (#2687)
new 4168e6b4c Change canCompleteSwap and completeSwapIfPossible to return
json with kv pair for result of check or attempt to complete swap. (#2697)
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (311b311d9)
\
N -- N -- N refs/heads/ApplicationClusterManager (4168e6b4c)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 5 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:
.../ResourceControllerDataProvider.java | 8 +
.../controller/rebalancer/topology/Topology.java | 2 +-
.../rebalancer/waged/WagedInstanceCapacity.java | 6 +-
.../waged/WagedResourceWeightsProvider.java | 5 +-
.../constraints/FaultZoneAwareConstraint.java | 19 +-
.../waged/constraints/NodeCapacityConstraint.java | 8 +-
.../NodeMaxPartitionLimitConstraint.java | 27 +-
.../constraints/ReplicaActivateConstraint.java | 16 +-
.../SamePartitionOnInstanceConstraint.java | 15 +-
.../waged/constraints/ValidGroupTagConstraint.java | 12 +-
.../stages/CurrentStateComputationStage.java | 68 ++++-
.../stages/IntermediateStateCalcStage.java | 19 +-
.../waged/TestWagedInstanceCapacity.java | 180 ++++++++++++
.../constraints/TestConstraintBasedAlgorithm.java | 29 +-
.../constraints/TestFaultZoneAwareConstraint.java | 5 +-
...int.java => TestReplicaActivateConstraint.java} | 48 ++--
...ntStateComputationStageForHandlingCapacity.java | 306 +++++++++++++++++++++
.../controller/TestPipelinePerformance.java | 146 ++++++++++
helix-front/server/controllers/d.ts | 2 +
helix-front/server/controllers/helix.ts | 6 +
20 files changed, 864 insertions(+), 63 deletions(-)
create mode 100644
helix-core/src/test/java/org/apache/helix/controller/rebalancer/waged/TestWagedInstanceCapacity.java
copy
helix-core/src/test/java/org/apache/helix/controller/rebalancer/waged/constraints/{TestPartitionActivateConstraint.java
=> TestReplicaActivateConstraint.java} (60%)
create mode 100644
helix-core/src/test/java/org/apache/helix/controller/stages/TestCurrentStateComputationStageForHandlingCapacity.java
create mode 100644
helix-core/src/test/java/org/apache/helix/integration/controller/TestPipelinePerformance.java