YARN-224. Fair scheduler logs too many nodeUpdate INFO messages. Contributed by Sandy Ryza.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1414647 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2b8824853b
commit
d9050e1208
|
@ -106,6 +106,9 @@ Release 2.0.3-alpha - Unreleased
|
|||
YARN-184. Remove unnecessary locking in fair scheduler, and address
|
||||
findbugs excludes. (sandyr via tucu)
|
||||
|
||||
YARN-224. Fair scheduler logs too many nodeUpdate INFO messages.
|
||||
(Sandy Ryza via tomwhite)
|
||||
|
||||
Release 2.0.2-alpha - 2012-09-07
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -723,7 +723,9 @@ public class FairScheduler implements ResourceScheduler {
|
|||
private synchronized void nodeUpdate(RMNode nm,
|
||||
List<ContainerStatus> newlyLaunchedContainers,
|
||||
List<ContainerStatus> completedContainers) {
|
||||
LOG.info("nodeUpdate: " + nm + " cluster capacity: " + clusterCapacity);
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("nodeUpdate: " + nm + " cluster capacity: " + clusterCapacity);
|
||||
}
|
||||
eventLog.log("HEARTBEAT", nm.getHostName());
|
||||
FSSchedulerNode node = nodes.get(nm.getNodeID());
|
||||
|
||||
|
|
Loading…
Reference in New Issue