MAPREDUCE-4336. Distributed Shell fails when used with the CapacityScheduler (ahmed via tucu)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1353625 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4b88923e19
commit
db31b6c0e4
@ -183,6 +183,9 @@ Branch-2 ( Unreleased changes )
|
||||
MAPREDUCE-4031. Prevent a Node Manager hang during shutdown.
|
||||
(Devaraj K via sseth)
|
||||
|
||||
MAPREDUCE-4336. Distributed Shell fails when used with the CapacityScheduler
|
||||
(ahmed via tucu)
|
||||
|
||||
Release 2.0.0-alpha - 05-23-2012
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -260,7 +260,7 @@ public boolean init(String[] args) throws ParseException {
|
||||
|
||||
appName = cliParser.getOptionValue("appname", "DistributedShell");
|
||||
amPriority = Integer.parseInt(cliParser.getOptionValue("priority", "0"));
|
||||
amQueue = cliParser.getOptionValue("queue", "");
|
||||
amQueue = cliParser.getOptionValue("queue", "default");
|
||||
amMemory = Integer.parseInt(cliParser.getOptionValue("master_memory", "10"));
|
||||
|
||||
if (amMemory < 0) {
|
||||
@ -353,6 +353,7 @@ public boolean run() throws IOException {
|
||||
}
|
||||
|
||||
GetQueueInfoRequest queueInfoReq = Records.newRecord(GetQueueInfoRequest.class);
|
||||
queueInfoReq.setQueueName(this.amQueue);
|
||||
GetQueueInfoResponse queueInfoResp = applicationsManager.getQueueInfo(queueInfoReq);
|
||||
QueueInfo queueInfo = queueInfoResp.getQueueInfo();
|
||||
LOG.info("Queue info"
|
||||
|
Loading…
Reference in New Issue
Block a user