Tagged Questions
The executorservice tag has no wiki summary.
26
votes
6answers
499 views
How can I make external methods interruptable?
The Problem
I'm running multiple invocations of some external method via an ExecutorService. I would like to be able to interrupt these methods, but unfortunately they do not check the interrupt flag ...
13
votes
4answers
5k views
Handling exceptions from Java ExecutorService tasks
I'm trying to use Java's ThreadPoolExecutor class to run a large number of heavy weight tasks with a fixed number of threads. Each of the tasks has many places during which it may fail due to ...
9
votes
5answers
2k views
ExecutorService's surprising performance break-even point — rules of thumb?
I'm trying to figure out how to correctly use Java's Executors. I realize submitting tasks to an ExecutorService has its own overhead. However, I'm surprised to see it is as high as it is.
My ...
9
votes
7answers
8k views
How to wait for all threads to finish, using ExecutorService?
I need to execute some amount of tasks 4 at a time, something like this:
ExecutorService taskExecutor = Executors.newFixedThreadPool(4);
while(...) {
taskExecutor.execute(new MyTask());
}
...
8
votes
5answers
8k views
Help with java executors: wait for task termination
I need to submit a number of task and then wait for them until all results are available. Each of them adds a String to a Vector (that is synchronized by default). Then I need to start a new task for ...
7
votes
2answers
250 views
How to run outstanding tasks immediately after ExecutorService.shutdown()?
I've got a ScheduledExecutorService with tasks scheduled to execute in an hour. How do I get the list of outstanding tasks so I can force them to run immediately?
I believe shutdown() will wait an ...
7
votes
2answers
1k views
Is adding tasks to BlockingQueue of ThreadPoolExecutor advisable?
The JavaDoc for ThreadPoolExecutor is unclear on whether it is acceptable to add tasks directly to the BlockingQueue backing the executor. The docs say calling executor.getQueue() is "intended ...
7
votes
2answers
3k views
ExecutorService that interrupts tasks after a timeout
I'm looking for an ExecutorService implementation that can be provided with a timeout. Tasks that are submitted to the ExecutorService are interrupted if they take longer than the timeout to run. ...
7
votes
3answers
1k views
Controlling Task execution order with ExecutorService
I have a process which delegates asynch tasks to a pool of threads. I need to ensure that certain tasks are executed in order.
So for example
Tasks arrive in order
Tasks a1, b1, c1, d1 , e1, a2, ...
6
votes
9answers
2k views
Removing all queued tasks of an ThreadPoolExecutor
i have this rather simple question about the ThreadPoolExecutor. I have the following situation: I have to consume objects from a queue, create the appropiate worker tasks for them and submit them to ...
5
votes
5answers
909 views
What is the fastest cyclic synchronization in Java (ExecutorService vs. CyclicBarrier vs. X)?
Which Java synchronization construct is likely to provide the best
performance for a concurrent, iterative processing scenario with a
fixed number of threads like the one outlined below? After ...
5
votes
5answers
2k views
Searching for Generic Asynchronous Java Job Execution Framework / Library
I am looking for a generic asynchronous Java job execution framework that could handle Callables or Runnables. It would be similar to java.util.concurrent.ExecutorService, (and possibly wrap ...
4
votes
1answer
190 views
Java ExecutorService invokeAll() interrupting
I have a fixed thread pool ExecutorService of width 10, and a list of 100 Callable's, each waiting for 20 seconds and recording their interrupts.
I'm calling invokeAll on that list in a separate ...
4
votes
5answers
304 views
Daemon threads scheduled on an ExecutorService; explain why this is bad form
I'm comfortable with the idea of orderly shutdown on threads scheduled with an ExectuorService; that is to say, calling shutdown or shutdownNow will cause threads created on the pool to exit ...
4
votes
1answer
158 views
Long computation causes ExecutorService to stop assigning new work
I am optimizing PNG files by spawning 5 pngout.exe processes to work on a directory of PNG files. Since pngout is single-threaded, this results in a large speedup. Some images take a long time to ...
4
votes
3answers
479 views
java thread reusage via executor
I am confused on the following:
To use threads in a Java program, the simplest way is to extend Thread class and implement the runnable interface (or simply implement runnable).
To start the thread's ...
4
votes
3answers
844 views
How to catch exceptions in FutureTask
After finding that FutureTask running in a Executors.newCachedThreadPool() on Java 1.6 (and from Eclipse) swallows exceptions in the Runnable.run() method, I've tried to come up with a way to catch ...
4
votes
11answers
1k views
500 Worker Threads, what kind of thread pool?
I am wondering if this is the best way to do this. I have about 500 threads that run indefinitely, but Thread.sleep for a minute when done one cycle of processing.
ExecutorService es = ...
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 = ...
4
votes
3answers
773 views
How can I report progress from a background task?
I have a long running task that is executing in the background on an ExecutorService thread pool. What are some best practices in terms of this task returning progress or intermediate results? Are ...
3
votes
4answers
89 views
Using InheritableThreadLocal with ThreadPoolExecutor — or — a ThreadPoolExecutor that doesn't reuse threads
I am trying to use both InheritableThreadLocal and a ThreadPoolExecutor.
This breaks down because ThreadPoolExecutor reuses threads for each pool (it is a pool, after all), meaning the ...
3
votes
2answers
300 views
ExecutorService awaitTermination gets stuck
I made a fixed size thread pool with Executors.newFixedThreadPool(2), and I executed 10 Runnable objects. I set breakpoints and traced through the execution. However, ...
3
votes
1answer
467 views
Java ExecutorService callback on thread terminate
I am using cached thread pool ExecutorService to run some asynchronous background tasks. I've provided my ThreadFactory that hands out threads to the ExecutorService (whenever it needs them). My ...
3
votes
2answers
364 views
ScheduledExecutorService worker threads retain interrupted status after FutureTask.cancel(true)
I have a task which I schedule to run periodically via ScheduledThreadPoolExecutor.scheduleAtFixedRate(task, rate, ...). A user can cancel this task manually, which invokes ...
3
votes
1answer
283 views
a funny thing happens… ExecutorCompletionService
I have an application written in java that needs to find all the reachable hosts on the network.
I use InetAddress.isReachable() to do this with a timeout of 2000 milliseconds.
I look up the current ...
3
votes
1answer
844 views
using ScheduledExecutorService to start and stop timer
From my readings, it seems that ScheduledExecutorService is the right way to start and stop timers in Java.
I need to port some code that starts and stops a timer. This is not a periodic timer. This ...
3
votes
3answers
1k views
ExecutionException and InterruptedException while using Future class's get() method
ExecutorService executor = Executors.newSingleThreadExecutor();
try {
Task t = new Task(response,inputToPass,pTypes,unit.getInstance(),methodName,unit.getUnitKey());
...
3
votes
4answers
2k views
invokeAll() is not willing to acept a Collection<Callable<T>>
I fail to understand why this code won't compile
ExecutorService executor = new ScheduledThreadPoolExecutor(threads);
class DocFeeder implements Callable<Boolean> {....}
...
...
3
votes
3answers
2k views
what would make a single task executor stop processing tasks?
I'm using a java.util.concurrent.ExecutorService that I obtained by calling Executors.newSingleThreadExecutor(). This ExecutorService can sometimes stop processing tasks, even though it has not been ...
2
votes
2answers
68 views
ExecutorService vs Asynchronous annotation
I have a list of EJBs, each one may run for more than 1 minute. I would like to run them in loop asynchronously, and then after a timeout of 10 seconds check for results using Future output.
As I ...
2
votes
3answers
56 views
putting a timeout for each of executes in java.util.concurrent.ExecutorService
How can I create a timeout for each command that is running in parallel using java.util.concurrent.ExecutorService?
My code is something like this:
For example in the code below I need obj1 run ...
2
votes
3answers
90 views
Can't stop a task which is started using ExecutorService
Sorry I have to open a new thread to describe this problem.
This morning I asked this question, there're some replies but my problem is still not solved.
This time I will attach some runnable ...
2
votes
2answers
74 views
write a simple benchmarking tool in java
I want to write a simple benchmarking tool in java, that will spin up x threads and hit a url y times in total.
The actual task part of it will make a web request to a url, and post a XML file.
So ...
2
votes
2answers
62 views
Java: Synchronize an ExecutorService necessary?
I have a class containing an ExecutorService that can be shared between threads, like:
class MyExecutor {
ExecutorService e = Executors.newSingleThreadExecutor();
....
....
public ...
2
votes
2answers
76 views
Android ExecutorService restart
Can I restart executorservice to start accepting new task after it has been shutdown?
Or I have to always create new executorserivce?
2
votes
2answers
85 views
Java ExecutorService - scaling
I am trying to write a program in Java using ExecutorService and its function invokeAll. My question is: does the invokeAll function solve the tasks simultaneously? I mean, if I have two processors, ...
2
votes
1answer
145 views
ListenableFutureTask / ExecutorService
I've Guava in my Classpath and want to use ListenableFutures, but currently I don't know how to submit ListenableFutures or is it currently only possible to use them without an executor in the calling ...
2
votes
3answers
234 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
614 views
Naming threads and thread-pools of ExecutorService
Let's say I have an application that utilizes the Executor framework as such
Executors.newSingleThreadExecutor().submit(new Runnable(){
@Override
public void run(){
// do stuff
}
...
2
votes
2answers
176 views
Java multithreading / synchronization issue
I am working on a large scale dataset and after building a model, I use multithreading (whole project in Java) as follows:
OutputStream out = new BufferedOutputStream(new FileOutputStream(outFile));
...
2
votes
2answers
502 views
Sleeping a thread inside an ExecutorService (Java/Clojure)
I have a rather massive number of threads being created inside a clojure program:
(import '(java.util.concurrent Executors))
(def *pool*
(Executors/newCachedThreadPool))
(defn do-something []
...
2
votes
3answers
424 views
How do I cancel that tasks that are taking too long using CompletionService
I submit some some Future tasks using a CompletionService wrapped round a 2 thread FixedThreadPool ExecutorService, I set then setup a loop equal to the number of tasks submitted and use ...
2
votes
3answers
315 views
Using ExecutorService with a tree of tasks to perform
We had a bit of a problem. :)
We want to ensure that only N threads are doing background tasks at any time. To do this, we used a fixed thread pool executor. It seemed to be working fine.
Then we ...
2
votes
4answers
232 views
How can I implement or find the equivalent of a thread-safe CompletionService?
I have a simple web service running inside a Tomcat container, which by nature is multi-threaded. In each request that comes into the service, I want to make concurrent calls to an external service. ...
2
votes
2answers
396 views
Get Runnable objects I scheduled using ScheduledThreadPoolExecutor when using shutdownNow() method
I'm using ScheduledThreadPoolExecutor.schedule(Runnable,int,TimeUnit) to schedule some objects of a class that implements Runnable.
At some point in time, my application is then shutting down, and I ...
2
votes
3answers
836 views
Java: ExecutorService that blocks on submission after a certain queue size
I am trying to code solution in which a single thread produces I/O-intensive tasks that can be performed in parallel. Each task have significant in-memory data. So I want to be able limit the number ...
2
votes
3answers
699 views
java executor service sequential execution
I am using the Executor framework specifically Executors.newCachedThreadPool();
I have a list of Runnables e.g. 100.
The first 50, each create a value (stored in a list) to be used by the last 50.
I ...
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 ...
2
votes
2answers
1k views
what happens to running/blocked runnables when executorservice is shutdown()
I posted a question about a thread pattern today, and almost everyone suggested that I look into the ExecutorService.
While I was looking into the ExecutorService, I think I am missing something. ...
2
votes
2answers
221 views
Bigger threadpool or additional ExecutorService when new kind of thread will run?
I have a question that is related to possible overhead of ExecutorServices in Java.
The present implementation has ExecutorService A with a capacity of 5 threads.
It runs threads of type A.
type A ...