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
3answers
2k views

Java Executor Best Practices

I'm working on a Java project where I need to have multiple tasks running asynchronously. I'm led to believe Executor is the best way for me to do this, so I'm familiarizing myself with it. (Yay ...
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? ...
8
votes
5answers
3k views

Java executors: how to be notified, without blocking, when a task completes?

Say I have a queue full of tasks which I need to submit to an executor service. I want them processed one at a time. The simplest way I can think of is to: Take a task from the queue Submit it to ...
7
votes
3answers
2k views

Unhandled exceptions with Java scheduled executors

I have the following issue and I would like to know what exactly happens. I am using Java's ScheduledExecutorService to run a task every five minutes. It works very well. Executors completely changed ...
7
votes
3answers
14k views

Any good Spring threading with a TaskExecutor examples?

I'm trying to get a handle on how to implement threading in a Java application that uses Spring for transaction management. I've found the TaskExecutor section in the Spring documentation, and ...
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
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 ...
5
votes
2answers
2k views

Executor and Daemon in Java

I have a MyThread object which I instantiate when my app is loaded through the server, I mark it as a Daemon thread and then call start() on it. The thread is meant to sit and wait for information ...
4
votes
3answers
1k views

How to implement PriorityBlockingQueue with ThreadPoolExecutor and custom tasks

I've searched a lot but could not find a solutuion to my problem. I have my own class, BaseTask, that uses a ThreadPoolExecutor to handle tasks. If I don't want prioritization (i.e. using a ...
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
64 views

Java scheduled executor accuracy

There is a peculiarity that I encountered while using Java scheduled executors and was wondering if what I experienced is normal. I need to schedule tasks that execute at a predefined rate of 5 ...
3
votes
2answers
239 views

A good way to bulk download images over http with Java

We have a web application that needs to import 10-20 images from a partner site via http. If I have a list of strings that represent the urls I want to download does anybody have a suggestion for how ...
3
votes
4answers
387 views

Writing Java server to handle multiple simultaneous clients

I need some advice in building a Java server that handles multiple clients at the same time. The clients need to remain connected for fairly long periods of time. I'm currently using blocking IO and ...
3
votes
1answer
460 views

Will a ThreadPoolExecutor.CallerRunsPolicy ever throw a RejectedExecutionException?

Are there any circumstances under which a ThreadPoolExecutor.CallerRunsPolicy will throw a RejectedExecutionException? It seems to me that the policy itself is intended to prevent throwing these ...
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
2answers
51 views

How to keep core threads alive and die out excess threads in ThreadPoolExecutor? keepAliveTime doesn't work as expected

I use ThreadPoolExecutor to manage a thread pool. What we want are: if the pool has less than corePoolSize threads, kick off a new thread for a new task; if the pool has more than corePoolSize ...
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
2answers
291 views

Pause ScheduledExecutorService

I am using a ScheduledExecutorService to execute a task that calls a service at a fixed rate. The service may return some data to the task. The task stores data in a queue. Some other threads slowly ...
2
votes
2answers
419 views

Using ThreadPool excutor service in tomcat to speed up requests

I have a tomcat6 servlet application. One of my requests (~10 seconds avg.) can significantly be improved by using multi threading because it is an CPU-only task and I have >= 8 cores. I just wonder ...
2
votes
2answers
630 views

How to ensure garbage collection of a FutureTask that is submitted to a ThreadPoolExecutor and then cancelled?

I am submitting Callable objects to a ThreadPoolExecutor and they seem to be sticking around in memory. Looking at the heap dump with the MAT tool for Eclipse see that the Callable objects are being ...
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
370 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
487 views

Java - what's so great about Executors?

In a life without Java Executors, new threads would have to be created for each Runnable tasks. Making new threads requires thread overhead (creation and teardown) that adds complexity and wasted time ...
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
1answer
25 views

Spring @Async without xml config

25.5.3 The Element To enable both @Scheduled and @Async annotations, simply include the 'annotation-driven' element from the task namespace in your configuration. ...
1
vote
4answers
61 views

Schedule Java task for a specified time

I would like to be able to schedule a task at a specific time in Java. I understand that the ExecutorService has the ability to schedule at periodic intervals, and after a specified delay, but I am ...
1
vote
3answers
97 views

Java Executor partial shutdown

Lets have one classic Executor in application. Many parts of application use this executor for some computations, each computation can be cancelled, for this I can call shutdown() or shutdownNow() on ...
1
vote
1answer
43 views

Java Executor, add new tasks at the bottom / end of the queue

I want to have an Executor with the possibility to choose whether new task is added at the top or at the bottom of the queue. What is the simplest way to achieve that?
1
vote
2answers
86 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
153 views

I do not understand this java ThreadPoolExecutor behavior

I have a ThreadPoolExecutor that is constructed with an unbounded queue (LinkedBlockingQueue) and a core and max pool size set to the number of cpus (say 4). Every great while I get a ...
1
vote
4answers
127 views

Why I got an error saying that no one exception is thrown?

I have this in a class that implements Callable : public class MasterCrawler implements Callable { public Object call() throws SQLException { resumeCrawling(); return true; } ...
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
2answers
663 views

ScheduledExecutorService Life Cycle?

I have an object that needs to do periodically do some work while the object itself is alive, so I designed something like the following. Basically a Main class which contains a reference to a ...
1
vote
3answers
839 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 ...
1
vote
3answers
2k views

Wait for all threads in an Executor to finish?

I'm implementing a parellel quicksort as programming practice, and after I finished, I read the Java tutorial page on Executors, which sound like they could make my code even faster. Unfortunately, I ...
1
vote
1answer
525 views

Java Scheduled Executor: Does it guarantee to not run in parallel if task hast not yet finished

does anyone know if the following java Method in the java.util.concurrent Package ScheduledExecutorService.html#scheduleAtFixedRate() absolutely guarantees, that the Runnable scheduled will never run ...
1
vote
1answer
502 views

ThreadPool is to Executor like Polling is to?

Java's Executor is (as far as I understand it) an abstraction over the ThreadPool concept - something that can accept and carry out (execute) tasks. I'm looking for a similar exception for the ...
0
votes
0answers
55 views

Is there a way to create multiple thread executors for different thread types?

I want to use spring 3 task implementations for my application which is going to be multi-threaded. My question is : I want to have 3 thread pools with my seperate thread classes and is there a way ...
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
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
1answer
266 views

ScheduledExecutorService multiple threads in paralel

I'm interested to use ScheduledExecutorService to spawn multiple threads for tasks if task before did not yet finished. For example I need to process a file every 0.5s. First task starts processing ...
0
votes
2answers
236 views

RejectedExecutionException even when ExecutorService is guarded by isShutdown()

I've got a problem that's been driving me nuts for a while and I need to consult your collective wisdom. I have a ThreadPoolExecutor with a pool of 1, called from Executors.newFixedThreadPool. I ...
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
4answers
536 views

java-Executor Framework

Please look at my following code.... private static final int NTHREDS = 10; ExecutorService executor = Executors.newFixedThreadPool(NTHREDS); while(rs.next()){ ...
0
votes
1answer
205 views

Lightweight, collapsible Executor implementation?

I'm building a mobile app for Android and I need to pool HTTP requests for each of my List adapters. I basically want an ExecutorService implementation that "collapses," ie: it will use up to n ...
0
votes
2answers
378 views

Stop Executor when a Callable returns a specific result

I'd like to stop an Executor from running any more Future objects even if they have been submitted to the Executor. Getting multiple threads running though an Executor all works fine and well but the ...

1 2