YARN-5693. Reduce loglevel to Debug in ContainerManagementProtocolProxy and AMRMClientImpl (yufeigu via rkanter)

(cherry picked from commit 2549ee9d4c)
This commit is contained in:
Robert Kanter 2016-09-30 13:30:55 -07:00
parent dfca0f4abb
commit 56ec975ea9
2 changed files with 11 additions and 6 deletions

View File

@ -455,10 +455,12 @@ public class AMRMClientImpl<T extends ContainerRequest> extends AMRMClient<T> {
protected void populateNMTokens(List<NMToken> nmTokens) { protected void populateNMTokens(List<NMToken> nmTokens) {
for (NMToken token : nmTokens) { for (NMToken token : nmTokens) {
String nodeId = token.getNodeId().toString(); String nodeId = token.getNodeId().toString();
if (getNMTokenCache().containsToken(nodeId)) { if (LOG.isDebugEnabled()) {
LOG.info("Replacing token for : " + nodeId); if (getNMTokenCache().containsToken(nodeId)) {
} else { LOG.debug("Replacing token for : " + nodeId);
LOG.info("Received new token for : " + nodeId); } else {
LOG.debug("Received new token for : " + nodeId);
}
} }
getNMTokenCache().setToken(nodeId, token.getToken()); getNMTokenCache().setToken(nodeId, token.getToken());
} }

View File

@ -78,8 +78,11 @@ public class ContainerManagementProtocolProxy {
YarnConfiguration.NM_CLIENT_MAX_NM_PROXIES YarnConfiguration.NM_CLIENT_MAX_NM_PROXIES
+ " (" + maxConnectedNMs + ") can not be less than 0."); + " (" + maxConnectedNMs + ") can not be less than 0.");
} }
LOG.info(YarnConfiguration.NM_CLIENT_MAX_NM_PROXIES + " : "
+ maxConnectedNMs); if (LOG.isDebugEnabled()) {
LOG.debug(YarnConfiguration.NM_CLIENT_MAX_NM_PROXIES + " : " +
maxConnectedNMs);
}
if (maxConnectedNMs > 0) { if (maxConnectedNMs > 0) {
cmProxy = cmProxy =