YARN-4710. Reduce logging application reserved debug info in FSAppAttempt#assignContainer (Contributed by Yiqun Lin via Daniel Templeton)
This commit is contained in:
parent
9449519a25
commit
b98fc8249f
|
@ -771,8 +771,8 @@ public class FSAppAttempt extends SchedulerApplicationAttempt
|
||||||
}
|
}
|
||||||
|
|
||||||
private Resource assignContainer(FSSchedulerNode node, boolean reserved) {
|
private Resource assignContainer(FSSchedulerNode node, boolean reserved) {
|
||||||
if (LOG.isDebugEnabled()) {
|
if (LOG.isTraceEnabled()) {
|
||||||
LOG.debug("Node offered to app: " + getName() + " reserved: " + reserved);
|
LOG.trace("Node offered to app: " + getName() + " reserved: " + reserved);
|
||||||
}
|
}
|
||||||
|
|
||||||
Collection<SchedulerRequestKey> keysToTry = (reserved) ?
|
Collection<SchedulerRequestKey> keysToTry = (reserved) ?
|
||||||
|
|
Loading…
Reference in New Issue