Skip to content

Commit 69a4eda

Browse files
authored
HBASE-26443 Some BaseLoadBalancer log lines should be at DEBUG level (#3838)
Signed-off-by: Nick Dimiduk <ndimiduk@apache.org> Signed-off-by: Viraj Jasani <vjasani@apache.org> Signed-off-by: Xiaolin Ha <haxiaolin@apache.org>
1 parent 8458e44 commit 69a4eda

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

hbase-balancer/src/main/java/org/apache/hadoop/hbase/master/balancer/BaseLoadBalancer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ protected abstract List<RegionPlan> balanceTable(TableName tableName,
608608
});
609609
return result;
610610
} else {
611-
LOG.info("Start Generate Balance plan for cluster.");
611+
LOG.debug("Start Generate Balance plan for cluster.");
612612
return balanceTable(HConstants.ENSEMBLE_TABLE_NAME, toEnsumbleTableLoad(loadOfAllTable));
613613
}
614614
}

hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1984,7 +1984,7 @@ public List<RegionPlan> executeRegionPlansWithThrottling(List<RegionPlan> plans)
19841984
}
19851985
}
19861986
}
1987-
LOG.info("Balancer is going into sleep until next period in {}ms", getConfiguration()
1987+
LOG.debug("Balancer is going into sleep until next period in {}ms", getConfiguration()
19881988
.getInt(HConstants.HBASE_BALANCER_PERIOD, HConstants.DEFAULT_HBASE_BALANCER_PERIOD));
19891989
return successRegionPlans;
19901990
}

0 commit comments

Comments
 (0)