Tagged Questions

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 ...
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 ...
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
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
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
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
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
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 ...
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
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
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
3answers
772 views

Multi threading with Java Executor

I am stuck with this following problem. Say, I have a request which has 1000 items, and I would like to utilize Java Executor to resolve this. Here is the main method public static void ...