HADOOP-11499. Check of executorThreadsStarted in ValueQueue#submitRefillTask() evades lock acquisition. Contributed by Ted Yu
This commit is contained in:
parent
56b7ec71a6
commit
7574df1bba
@ -764,6 +764,9 @@ Release 2.7.0 - UNRELEASED
|
||||
HADOOP-11482. Use correct UGI when KMSClientProvider is called by a proxy
|
||||
user. Contributed by Arun Suresh.
|
||||
|
||||
HADOOP-11499. Check of executorThreadsStarted in
|
||||
ValueQueue#submitRefillTask() evades lock acquisition (Ted Yu via jlowe)
|
||||
|
||||
Release 2.6.0 - 2014-11-18
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -308,11 +308,13 @@ private void submitRefillTask(final String keyName,
|
||||
final Queue<E> keyQueue) throws InterruptedException {
|
||||
if (!executorThreadsStarted) {
|
||||
synchronized (this) {
|
||||
// To ensure all requests are first queued, make coreThreads =
|
||||
// maxThreads
|
||||
// and pre-start all the Core Threads.
|
||||
executor.prestartAllCoreThreads();
|
||||
executorThreadsStarted = true;
|
||||
if (!executorThreadsStarted) {
|
||||
// To ensure all requests are first queued, make coreThreads =
|
||||
// maxThreads
|
||||
// and pre-start all the Core Threads.
|
||||
executor.prestartAllCoreThreads();
|
||||
executorThreadsStarted = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
// The submit/execute method of the ThreadPoolExecutor is bypassed and
|
||||
|
Loading…
Reference in New Issue
Block a user