Daniel Templeton created YARN-7133:
--------------------------------------
Summary: Clean up lock-try order fair scheduler
Key: YARN-7133
URL: https://issues.apache.org/jira/browse/YARN-7133
Project: Hadoop YARN
Issue Type: Improvement
Components: fairscheduler
Affects Versions: 3.0.0-alpha4
Reporter: Daniel Templeton
There are many places that follow the pattern:{code}try {
lock.lock();
...
} finally {
lock.unlock();
}{code}
There are a couple of reasons that's a bad idea. The correct pattern
is:{code}lock.lock();
try {
...
} finally {
lock.unlock();
}{code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]