Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
144 views

Simple thread problem

I started learning java and I am now at the concurrency chapter. After reading some stuff about concurrency I tried an example of my own. public class Task implements Runnable{ public void run() { ...
4
votes
3answers
497 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 ...
3
votes
1answer
33 views

ExecutorService only run most recently added Callable

I have a single threaded executor service for fetching some data over the network. As the user is typing in a search box I am enqueuing possible network tasks. What I want is to cancel all previous ...
3
votes
2answers
144 views

How to get to FutureTask execution state?

I have a singleThreadExecutor in order to execute the tasks I submit to it in serial order i.e. one task after another, no parallel execution. I have runnable which goes something like this ...
3
votes
1answer
324 views

ThreadPoolExecutor threads having contention with other threads

I am working on a enhancement for an existing Java application. The application is a message processor which processes several millions of messages daily. It basically written using Core Java with ...
3
votes
1answer
91 views

Does this need explicit synchronization?

I have two threads, and I want to make sure I am doing the synchronization correctly on the LinkedBlockingQueue.. Is this correct? Or is the explicit synchronization on (messageToCommsQueue) not ...
2
votes
2answers
39 views

Should I call cancel(true) on Future<?> or my own FutureTask

I have a custom class MyFutureTask extends FutureTask<Void> upon which I do some code on the done() method. I use an ExecutorService which I call submit(new MyFutureTask()) into it. Now I can ...
2
votes
1answer
67 views

How to manage executors

It's not infrequent in my practice that software I develop grows big and complex, and various parts of it use executors in their own way. From the performance point of view it would be better to use ...
2
votes
1answer
138 views

I need clarification on the ThreadpoolExecutor beforeExecute and afterExecute hooks

I am using threadpools in my application. I have subclassed the TreadPoolExecutor and overriden the methods beforeExecute, afterExecute and terminated for statistical purposes. I also have implemented ...
2
votes
2answers
105 views

Is it safe or advisable to re-enqueue a Runnable with the same Executor if a problem occurs and I want to retry?

I just wrote this code in my runnable's run() method: try { dbConnection = MyApp.datasource.getConnection(); } catch (SQLException e) { logger.log(Level.SEVERE, "Could not obtain a DB ...
2
votes
3answers
149 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
744 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
1answer
863 views

how do FutureTasks and CachedThreadPool work

I currently have code that does the following: private final static ExecutorService pool = Executors.newCachedThreadPool(); public void foo(){ FutureTask<MyObject> first_task = ...
1
vote
1answer
33 views

Where to perform final cleanup for a scheduled task when using a ScheduledExecutorService

The assignment is to implement a very very simplified computing "cloud". The cloud instances ("engines") are supposed to regularly send keep-alive messages ("commands") to a supervisor. I've ...
1
vote
1answer
47 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
432 views

Producer Consumer - Using Executors.newFixedThreadPool

My understanding of a Producer-Consumer pattern is that it could be implemented using a queue shared between the producer and the consumer. Producer submits work to a shared queue, consumer retrieves ...
0
votes
4answers
103 views

Executors threads not terminating

I am using Executors.newFixedThreadPool(100) method. Single command execution needs approx 20 threads. After executing the command 5-6 times, application stops responding. My thread is implementing ...
0
votes
3answers
191 views

How to access the underlying queue of a ThreadpoolExecutor in a thread safe way

The getQueue() method provides access to the underlying blocking queue in the ThreadPoolExecutor, but this does not seem to be safe. A traversal over the queue returned by this function might miss ...
0
votes
2answers
258 views

Why can't I construct a ThreadPoolExecutor backed by a DelayQueue?

I'm trying to create a ThreadPoolExecutor: // Thingy implements Delayed and Runnable ExecutorService executor = new ThreadPoolExecutor(1, 1, 0l, TimeUnit.SECONDS, new DelayQueue<Thingy>()); ...
0
votes
1answer
252 views

Executors run longer than timeout value

Here is a code segment of scala. I set timeout as 100 mills. Out of 10000 loops, 106 of them run more than 100 mills without throwing exceptions. The largest one is even 135 mills. Any reason why ...
0
votes
2answers
178 views

Help with java threads or executors: Executing several MySQL selects, inserts and updates simmultaneously

I'm writing an application to analyse a MySQL database, and I need to execute several DMLs simmultaneously; for example: // In ResultSet rsA: Select * from A; rsA.beforeFirst(); while (rsA.next()) { ...