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>
This commit is contained in:
parent
8458e44a1a
commit
69a4eda35f
|
@ -608,7 +608,7 @@ public abstract class BaseLoadBalancer implements LoadBalancer {
|
|||
});
|
||||
return result;
|
||||
} else {
|
||||
LOG.info("Start Generate Balance plan for cluster.");
|
||||
LOG.debug("Start Generate Balance plan for cluster.");
|
||||
return balanceTable(HConstants.ENSEMBLE_TABLE_NAME, toEnsumbleTableLoad(loadOfAllTable));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1984,7 +1984,7 @@ public class HMaster extends HBaseServerBase<MasterRpcServices> implements Maste
|
|||
}
|
||||
}
|
||||
}
|
||||
LOG.info("Balancer is going into sleep until next period in {}ms", getConfiguration()
|
||||
LOG.debug("Balancer is going into sleep until next period in {}ms", getConfiguration()
|
||||
.getInt(HConstants.HBASE_BALANCER_PERIOD, HConstants.DEFAULT_HBASE_BALANCER_PERIOD));
|
||||
return successRegionPlans;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue