vote up 0 vote down star

Encountered a situation when ThreadPoolExecutor is parked in execute(Runnable) function while all the ThreadPool threads are waiting in getTask func, workQueue is empty.

Does anybody have any ideas?

The ThreadPoolExecutor is created with ArrayBlockingQueue, corePoolSize == maximumPoolSize = 4

[Edit] To be more precise, the thread is blocked in ThreadPoolExecutor.exec(Runnable command) func. It has the task to execute, but doesn't do it.

[Edit2] The executor is blocked somewhere inside the working queue (ArrayBlockingQueue).

[Edit3] The callstack:

thread = front_end(224)
at sun.misc.Unsafe.park(Native methord)
at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
at
java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(AbstractQueuedSynchronizer.java:747)
at
java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireQueued(AbstractQueuedSynchronizer.java:778)
at
java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(AbstractQueuedSynchronizer.java:1114)
at
java.util.concurrent.locks.ReentrantLock$NonfairSync.lock(ReentrantLock.java:186)
at java.util.concurrent.locks.ReentrantLock.lock(ReentrantLock.java:262)
at java.util.concurrent.ArrayBlockingQueue.offer(ArrayBlockingQueue.java:224)
at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:653)
at net.listenThread.WorkersPool.execute(WorkersPool.java:45)

at the same time the workQueue is empty (checked using remote debug)

[Edit4] Code working with ThreadPoolExecutor:

public WorkersPool(int size) {
  pool = new ThreadPoolExecutor(size, size, IDLE_WORKER_THREAD_TIMEOUT, TimeUnit.SECONDS, new ArrayBlockingQueue<Runnable>(WORK_QUEUE_CAPACITY),
    new ThreadFactory() {
      @NotNull
      private final AtomicInteger threadsCount = new AtomicInteger(0);

      @NotNull
      public Thread newThread(@NotNull Runnable r) {
        final Thread thread = new Thread(r);
        thread.setName("net_worker_" + threadsCount.incrementAndGet());
        return thread;
      }
    },

    new RejectedExecutionHandler() {
      public void rejectedExecution(@Nullable Runnable r, @Nullable ThreadPoolExecutor executor) {
        Verify.warning("new task " + r + " is discarded");
      }
    });
}

public void execute(@NotNull Runnable task) {
  pool.execute(task);
}

public void stopWorkers() throws WorkersTerminationFailedException {
  pool.shutdownNow();
  try {
    pool.awaitTermination(THREAD_TERMINATION_WAIT_TIME, TimeUnit.SECONDS);
  } catch (InterruptedException e) {
    throw new WorkersTerminationFailedException("Workers-pool termination failed", e);
  }
}

}

flag

2 Answers

vote up 0 vote down

I don't see any locking in the code of ThreadPoolExecutor's execute(Runnable). The only variable there is the workQueue. What sort of BlockingQueue did you provide to your ThreadPoolExecutor?

On the topic of deadlocks:

You can confirm this is a deadlock by examining the Full Thread Dump, as provided by <ctrl><break> on Windows or kill -QUIT on UNIX systems.

Once you have that data, you can examine the threads. Here is a pertinent excerpt from Sun's article on examining thread dumps (suggested reading):

For hanging, deadlocked or frozen programs: If you think your program is hanging, generate a stack trace and examine the threads in states MW or CW. If the program is deadlocked then some of the system threads will probably show up as the current threads, because there is nothing else for the JVM to do.

On a lighter note: if you are running in an IDE, can you ensure that there are no breakpoints enabled in these methods.

link|flag
As I wrote in my question, ArrayBlockingQueue is used. And it's empty. Yes, the thread is blocking somewhere in the working queue. – Vitaly Sep 9 at 6:04
I used remoted debug. Edited the question - callstack added. – Vitaly Sep 9 at 6:12
You can also check for deadlocks using JConsole – pjp Sep 9 at 8:37
ah, yes, I see the ArrayBlockingQueue now. Two points: 1. on the call stack, the line above the stack that identifies the thread would also be useful, as it gives an indication of the thread condition, and 2. some code would be good to see how you are accessing the TPE and if you are accessing the ArrayBlockingQueue outside of the TPE as well. – akf Sep 10 at 2:47
Edited callStack (but I'm not sure it's what your meant). Added the code - it's simple. By the way, it seems nobody encountered the problem. Already thinking about writing own simple pool :(( – Vitaly Sep 10 at 5:49
vote up 0 vote down

As someone already mentioned, this sounds like normal behaviour, the ThreadPoolExecutor is just waiting to do some work. If you want to stop it, you need to call:

executor.shutdown()

to get it to terminate, usually followed by a executor.awaitTermination

link|flag
Edited the question. – Vitaly Sep 9 at 6:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.