This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/master by this push:
new 215d1019608 HBASE-28913 LoadBalancerPerformanceEvaluation fails with
NPE (addendum) (#7790)
215d1019608 is described below
commit 215d1019608b7f86d680d4339c2223a6936b8765
Author: Liu Xiao <[email protected]>
AuthorDate: Wed Feb 25 09:40:09 2026 +0800
HBASE-28913 LoadBalancerPerformanceEvaluation fails with NPE (addendum)
(#7790)
Signed-off-by: Duo Zhang <[email protected]>
---
.../apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/hbase-balancer/src/main/java/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.java
b/hbase-balancer/src/main/java/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.java
index 0eedc8fc5c5..f2b2240a174 100644
---
a/hbase-balancer/src/main/java/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.java
+++
b/hbase-balancer/src/main/java/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.java
@@ -292,7 +292,8 @@ public class StochasticLoadBalancer extends
BaseLoadBalancer {
tempFunctionCosts = new double[costFunctions.size()];
LOG.info(
- "Loaded config: maxSteps={}, runMaxSteps={}, stepsPerRegion={},
maxRunningTime={}, isByTable={}, CostFunctions={}, sum of multiplier of cost
functions = {} etc.",
+ "Loaded config: maxSteps={}, runMaxSteps={}, stepsPerRegion={},
maxRunningTime={}, "
+ + "isByTable={}, CostFunctions={}, sum of multiplier of cost functions
= {} etc.",
maxSteps, runMaxSteps, stepsPerRegion, maxRunningTime, isByTable,
Arrays.toString(getCostFunctionNames()), sumMultiplier);
}