YARN-3487. CapacityScheduler scheduler lock obtained unnecessarily when calling getQueue (Jason Lowe via wangda)

This commit is contained in:
Wangda Tan 2015-04-17 17:22:27 -07:00
parent f65eeb412d
commit f47a5763ac
2 changed files with 4 additions and 6 deletions

View File

@ -238,6 +238,8 @@ Release 2.7.1 - UNRELEASED
OPTIMIZATIONS
BUG FIXES
YARN-3487. CapacityScheduler scheduler lock obtained unnecessarily when
calling getQueue (Jason Lowe via wangda)
Release 2.7.0 - UNRELEASED

View File

@ -642,7 +642,7 @@ static CSQueue parseQueue(
return queue;
}
public synchronized CSQueue getQueue(String queueName) {
public CSQueue getQueue(String queueName) {
if (queueName == null) {
return null;
}
@ -940,11 +940,7 @@ public QueueInfo getQueueInfo(String queueName,
boolean includeChildQueues, boolean recursive)
throws IOException {
CSQueue queue = null;
synchronized (this) {
queue = this.queues.get(queueName);
}
if (queue == null) {
throw new IOException("Unknown queue: " + queueName);
}