Tagged Questions
11
votes
7answers
4k views
How to make ThreadPoolExecutor's submit() method block if it is saturated?
I want to create a ThreadPoolExecutor such that when it has reached its maximum size and the queue is full, the sumbit() method blocks when trying to add new tasks. Do I need to implement a custom ...
9
votes
5answers
8k views
When should we use Java's Thread over Executor?
Executor seems like a clean abstraction. When would you want to use Thread directly rather than rely on the more robust executor?
8
votes
4answers
383 views
Why does this code not see any significant performance gain when I use multiple threads on a quadcore machine?
I wrote some Java code to learn more about the Executor framework.
Specifically, I wrote code to verify the Collatz Hypothesis - this says that if you iteratively apply the following function to ...
8
votes
4answers
1k views
How to properly catch RuntimeExceptions from Executors?
Say that I have the following code:
ExecutorService executor = Executors.newSingleThreadExecutor();
executor.execute(myRunnable);
Now, if myRunnable throws a RuntimeExcpetion, how can I catch it? ...
5
votes
4answers
506 views
ThreadPoolExecutor policy
I'm trying to use a ThreadPoolExecutor to schedule tasks, but running into some problems with its policies. Here's its stated behavior:
If fewer than corePoolSize threads are running, the Executor ...
4
votes
1answer
1k views
Elegantly implementing queue length indicators to ExecutorServices
Why, oh why doesn't java.util.concurrent provide a queue length indicators for its ExecutorServices? Recently I found myself doing something like this:
ExecutorService queue = ...
3
votes
2answers
6k views
newCachedThreadPool() V/s newFixedThreadPool
newCachedThreadPool() V/s newFixedThreadPool(...)
when to use and which is better in terms of resource utilisation?
2
votes
3answers
235 views
ExecutorService slow multi thread performance
I am trying to execute a simple calculation (it calls Math.random() 10000000 times). Surprisingly running it in simple method performs much faster than using ExecutorService.
I have read another ...
2
votes
3answers
145 views
Is there a simple way to tell what tasks a Java Executor is running at a given moment?
I'm sure I could hack something together which would enable me to figure this out, but I'm hoping there's an out-of-the-box solution I'm just missing. I read the docs but I didn't see anything.
My ...
2
votes
3answers
372 views
“Single LIFO Executor” / SwingWorker
Consider a Swing application with a JList or JTable, when the selection changes a SwingWorker is started and loads related data from database and updates UI. This works fine and the UI is responsive.
...
2
votes
2answers
2k views
ThreadPoolExecutor Block When Queue Is Full?
I am trying to execute lots of tasks using a ThreadPoolExecutor. Below is a hypothetical example:
def workQueue = new ArrayBlockingQueue<Runnable>(3, false)
def threadPoolExecutor = new ...
1
vote
2answers
87 views
When is specifying separate core and maximum pool sizes in ThreadPoolExecutor a good idea?
I'm trying to understand the point in specifying separate core and maximum pool sizes for Java 5's ThreadPoolExecutor. My understanding is that the number of threads is only increased once the queue ...
1
vote
2answers
254 views
Should I limit the number of Executors I have?
I have a Java project where I need to run things in parallel. I do this with executors. The thing is, I need to use executors in a great many places. Should I favor passing a few executors around to ...
1
vote
3answers
841 views
Java Executors: how can I set task priority?
Is there a possibility to set priority to tasks which are executed by Executors? I've found some statements in JCIP about it's possible but I cannot find any example and I cannot find anything related ...
0
votes
1answer
60 views
Error with Grails Executor plugin, bean “persistenceInterceptor” not found
I installed the "executor" plugin into my Grails app to do some simple asynchronous processing; I'm not using Hibernate or any fancy persistence. Based on the documentation for the plugin, which can ...
0
votes
3answers
119 views
Implementing Producer consumer pattern
I am trying to write a mail utility that places mails in a queue, and it is later consumed by a consumer thread.
I am trying to implement a typical producer-consumer pattern, but something is going ...
0
votes
0answers
69 views
Count pending tasks in futures.ThreadPoolExecutor
I am looking for a way of counting the number of pending tasks in python 3.2 futures.ThreadPoolExecutor.
Until know, I have two solutions:
1.- Increase the count of pending tasks on submission and ...
0
votes
4answers
143 views
Java ThreadPoolExecutor stops working after a while
I have a problem with the ThreadPoolExecutor. It works fine for hours, but sometimes (at a random time, sometimes after 2 minutes or 3 hours) it stops executing the submitted tasks and the program ...
0
votes
1answer
115 views
Could not start more threads despite using Executors
i have been advised to use Executors.newCachedThreadPool() which will be able to solve problems when over-spawning threads.
However there is still an error when the number of threads is growing past ...
0
votes
2answers
206 views
Do I have to manually shut down an Executor at application exit?
Suppose I have an Executor executor; somewhere in my application. Is it sufficient to just say setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); as usual and let "the system" deal with it, or do I have ...
0
votes
2answers
526 views
How should I use Executor insteand of AsyncTask or IntentService for queueing task on Android?
Is it a good solution or not?
How to implement?
When should I shutdown properly? I shutdown it onDestroy() in the Activity, then relaunch my app as soon as possible. It causes a ...