YARN-4296. DistributedShell Log.info is not friendly. (Xiaowei Wang via stevel)
This commit is contained in:
parent
14f8dd0423
commit
446212a39e
|
@ -534,6 +534,9 @@ Release 2.8.0 - UNRELEASED
|
|||
YARN-2913. Fair scheduler should have ability to set MaxResourceDefault for
|
||||
each queue. (Siqi Li via mingma)
|
||||
|
||||
YARN-4296. DistributedShell Log.info is not friendly.
|
||||
(Xiaowei Wang via stevel)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
YARN-3339. TestDockerContainerExecutor should pull a single image and not
|
||||
|
|
|
@ -453,9 +453,9 @@ public class Client {
|
|||
for (NodeReport node : clusterNodeReports) {
|
||||
LOG.info("Got node report from ASM for"
|
||||
+ ", nodeId=" + node.getNodeId()
|
||||
+ ", nodeAddress" + node.getHttpAddress()
|
||||
+ ", nodeRackName" + node.getRackName()
|
||||
+ ", nodeNumContainers" + node.getNumContainers());
|
||||
+ ", nodeAddress=" + node.getHttpAddress()
|
||||
+ ", nodeRackName=" + node.getRackName()
|
||||
+ ", nodeNumContainers=" + node.getNumContainers());
|
||||
}
|
||||
|
||||
QueueInfo queueInfo = yarnClient.getQueueInfo(this.amQueue);
|
||||
|
|
Loading…
Reference in New Issue