vote up 0 vote down star
1

Number of tasks (threads) submitted is also not huge in this test scenario.

flag

52% accept rate
1  
Could you please refine your question? E.g. add a short testcase. – Kutzi Oct 5 at 12:19
Sorry, there is not much code I can share due to IP reasons. In nut shell, I am calling submit with Callable<T> types. I am looking for potential scenarios this can happen. – Krishna Kumar Oct 5 at 12:24
1  
Are you saying there is no specific scenario you are looking at, but instead would like to know of the hypothetical scenarios where this exception could be thrown? if so, you should reword the question from 'Why does...' to 'When would...' – akf Oct 5 at 12:39

2 Answers

vote up 2 vote down check

You'll need to provide code samples of how you instantiate and call submit on the pool (IP should be a non-issue here as we don't need details of the internals of your Callable classes or anything like that).

Based on the information that you've given, you're almost certainly shutting down the executor service somewhere before submitting the callable to it. Check if you make any calls to shutdown or shutdownNow, and if so ensure that you're not adding tasks after this point.

Beyond that, you may want to register your own implementation of java.util.concurrent.RejectedExecutionHandler in order to aid in debugging; its [rejectedExecution][1] message will be called whenever the executor is unable to accept a task, so you could put some rudimentary state-inspection logic there to help you find the cause.

[1]: http://java.sun.com/javase/6/docs/api/java/util/concurrent/RejectedExecutionHandler.html#rejectedExecution%28java.lang.Runnable, java.util.concurrent.ThreadPoolExecutor)

link|flag
You were right; I found the code which was shutting down the executor pool; thanks – Krishna Kumar Oct 5 at 13:26
vote up 0 vote down

I dont see anywhere in the invocation of the Executors.newCachedThreadPool() methods where a RejectedExecutionException is thrown. There are only three cases where it appears to be thrown in Java 6:

  • when calling execute() on a ThreadPoolExecutor and the maximum pool size has been reached.
  • when calling execute() on a ThreadPoolExecutor at the same time that shutdownNow, and has essentially lost the race with the shutdownNow call.
  • when trying to schedule execution of a runnable in a ScheduledThreadPoolExecutor after the executor has been shutdown.
link|flag

Your Answer

Get an OpenID
or

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