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
|
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
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue