YARN-4296. DistributedShell Log.info is not friendly. (Xiaowei Wang via stevel)

This commit is contained in:
Steve Loughran 2015-10-24 12:54:48 +01:00
parent 14f8dd0423
commit 446212a39e
2 changed files with 6 additions and 3 deletions

View File

@ -534,6 +534,9 @@ Release 2.8.0 - UNRELEASED
YARN-2913. Fair scheduler should have ability to set MaxResourceDefault for YARN-2913. Fair scheduler should have ability to set MaxResourceDefault for
each queue. (Siqi Li via mingma) each queue. (Siqi Li via mingma)
YARN-4296. DistributedShell Log.info is not friendly.
(Xiaowei Wang via stevel)
OPTIMIZATIONS OPTIMIZATIONS
YARN-3339. TestDockerContainerExecutor should pull a single image and not YARN-3339. TestDockerContainerExecutor should pull a single image and not

View File

@ -453,9 +453,9 @@ public class Client {
for (NodeReport node : clusterNodeReports) { for (NodeReport node : clusterNodeReports) {
LOG.info("Got node report from ASM for" LOG.info("Got node report from ASM for"
+ ", nodeId=" + node.getNodeId() + ", nodeId=" + node.getNodeId()
+ ", nodeAddress" + node.getHttpAddress() + ", nodeAddress=" + node.getHttpAddress()
+ ", nodeRackName" + node.getRackName() + ", nodeRackName=" + node.getRackName()
+ ", nodeNumContainers" + node.getNumContainers()); + ", nodeNumContainers=" + node.getNumContainers());
} }
QueueInfo queueInfo = yarnClient.getQueueInfo(this.amQueue); QueueInfo queueInfo = yarnClient.getQueueInfo(this.amQueue);