MAPREDUCE-3748. Changed a log in CapacityScheduler.nodeUpdate to debug. Contributed by Ramya Sunil.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1238157 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
443d8f6c0b
commit
7ed0f74997
|
@ -618,6 +618,9 @@ Release 0.23.1 - Unreleased
|
|||
java.io.File.createTempFile to create temporary files as part of their
|
||||
tasks. (Jonathan Eagles via vinodkv)
|
||||
|
||||
MAPREDUCE-3748. Changed a log in CapacityScheduler.nodeUpdate to debug.
|
||||
(ramya via acmurthy)
|
||||
|
||||
Release 0.23.0 - 2011-11-01
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -531,8 +531,10 @@ implements ResourceScheduler, CapacitySchedulerContext {
|
|||
private synchronized void nodeUpdate(RMNode nm,
|
||||
List<ContainerStatus> newlyLaunchedContainers,
|
||||
List<ContainerStatus> completedContainers) {
|
||||
LOG.info("nodeUpdate: " + nm + " clusterResources: " + clusterResource);
|
||||
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("nodeUpdate: " + nm + " clusterResources: " + clusterResource);
|
||||
}
|
||||
|
||||
SchedulerNode node = getNode(nm.getNodeID());
|
||||
|
||||
// Processing the newly launched containers
|
||||
|
|
Loading…
Reference in New Issue