0
votes
2answers
40 views

cachedThreadPool not working as I expected

I'm playing around with threads and I don't understand why this isn't working as I thought. I am trying to calculate a sum using threads and was expecting for the thread pool to wait for all tasks ...
2
votes
2answers
171 views

Adding Thread in ThreadPool in Executor Service

I am working on a Multithreading Program in which I am trying to make sure each Thread is running for 30 minutes. Suppose if we have 10 threads then each thread out of 10 should run for 30 minutes. ...
5
votes
2answers
152 views

Does Java provide an ExecutorService which allows a worker to execute on the same thread?

I am looking for an implementation of ExecutorService which will provide the following semantics. Each thread is occupied by a 'worker' that performs some task based on an input. Each worker is ...
1
vote
3answers
343 views

Executor service in java--> how to convert single thread code to use executor

Pardon me if the question sounds silly - I am just starting to use Executor. I have an existing java app that uses threads in this manner-- basically standalone threads are used-- private Thread ...
3
votes
2answers
117 views

ExecutorCompletionService runs only in a single thread, but ExecutorService uses all CPUs

I have a bunch of Callables that I want to run in parallel and get the results for. I have 12 cores on my machine; the following code works as expected with 100% CPU usage: exec = ...
2
votes
1answer
192 views

Optimal way of creating a fixed size thread pool in Java using the Executors service

I am using the Executors framework in Java to create thread pools for a multi-threaded application, and I have a question related to performance. I have an application which can work in realtime or ...
2
votes
3answers
87 views

Thread Pool probelms - Collecting files

I need to serialize into an ArrayList all absolute files paths from a location. I want do that with a FixedThreadPool from ExecutorService. Example- location: c:/folder1; folder1 have more folders ...
0
votes
2answers
172 views

Turning an ExecutorService to daemon in Java

I am using an ExecutoreService in Java 1.6, started simply by static ExecutorService pool = Executors.newFixedThreadPool(THREADS). In order to avoid building multiple thread pools, and an ...
1
vote
2answers
61 views

Is there a way to cancel and reuse an ExecutorService?

I am writing a Java Fractal Explorer, and the fractal calculation is done multi-threaded. Previously, I just created a bunch of threads (as many as the system has processor cores) and held them in an ...
0
votes
1answer
55 views

ExecutorService where to store

I need an executor service to invoke a 3rd party service, to save from rtt and latency, planning to fire all the 3rd party request concurrently. I would like to know if I should create an ...
1
vote
3answers
381 views

Java set a callback from ExecutorService

I have a fixedThreadPool that I am using to run a bunch of worker threads to achieve parallel execution of a task with many components. When all threads have finished, I retrieve their results (which ...
2
votes
3answers
198 views

ExecutorService which runs tasks in calling thread?

Are there any java.util.ExecutorService implementations which simply run all executed tasks in the calling thread? If this isn't included in Java by default, is there a library which contains an ...
2
votes
2answers
1k views

Java ExecutorService pause/resume a specific thread

Is there a way to use ExecutorService to pause/resume a specific thread? private static ExecutorService threadpool = Executors.newFixedThreadPool(5); Imagine that I want to stop the thread wich as ...
0
votes
1answer
82 views

Mullti-producer single-consumer executor service design

I have a java.util.BlockingQueue which is full of POJOs which need to be serviced by an ExecutorService. This queue must be serviced by a single thread, but will be pushed to from multiple threads at ...
1
vote
1answer
82 views

how to strand executorservice

My program flow is like this: I need to sequential processing per user's request In C++ I will use boost asio and one strand per user but I had to code in java So I intend to create one ...
4
votes
3answers
702 views

ThreadPoolExecutor with ArrayBlockingQueue

I started reading more about ThreadPoolExecutor from Java Doc as I am using it in one of my project. So Can anyone explain me what does this line means actually?- I know what does each parameter ...
3
votes
3answers
230 views

Running Program for 60 minutes and Each Thread uses Different ID

How do I make sure each thread is using different unique ID and that ID should be in between startExistingRange and endExistingRange. As I am worried because the program is supposed to run for 60 ...
4
votes
2answers
431 views

Java library to maintain a process pool

I'm working on a Java daemon that requires concurrency: an infinite loop that listens on a job queue (redis) and distributes each job to a worker. The worker doesn't necessarily have to return a ...
2
votes
2answers
932 views

ScheduledExecutorService when shutdown should be invoked?

I use ScheduledExecutorService in my application. I need to use it from time to time in certain Utility class to run scheduled threads. Is it a good design to hold ScheduledExecutorService in static ...
-1
votes
2answers
118 views

Statistically difference between Normal Multithreading and Executors with multithreading

Can anybody suggest me how can can I show Statistically difference between Normal Multithreading and Executors with multithreading in-terms of as e.g CPU time,Total thread user time,memory usage, ...
4
votes
2answers
1k views

Java Thread Pools/Executor Service and wait()s - what happens to the threads & task queue?

I've looked around but haven't found an answer so I wanted to confirm this for certain. Say I have a fixed size thread pool - ExecutorService pool = Executors.newFixedThreadPool(5); And I have some ...
0
votes
3answers
162 views

Do I need to do a future.get() on a Future that doesn't return a value that I care about?

My Java app uses a java.util.concurrent.Executors.newCachedThreadPool() to launch a number of different threads that do different kinds of work. Some of the threads return a value. For these, I am ...
0
votes
1answer
2k views

Java using ExecutorService,CompletionService,BlockingQueue,and Observer correctly?

So, I'm pretty new to multi-threading and have been using this idea in all my programs lately. Before I start using it more I really want to make sure it is a correct efficient way to implement ...
-1
votes
1answer
3k views

Java Executor Service Thread Pool [closed]

If I create a fixed size thread pool with 10 threads in java using Executor framework: private final ExecutorService pool; pool = Executors.newFixedThreadPool(10); and then try to submit more than ...
2
votes
1answer
314 views

How to join the main thread to a thread pool in java

Like joining two threads using join(), is there a way to join a thread to a ExecutorService object (a thread pool) ?
13
votes
4answers
6k 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 } ...
1
vote
3answers
2k views

Java difference between fixed threadpool and scheduled threadpool

I have a fixed thread pool that runs 7 concurrent threads at any time (with a queue), and I want to turn it into a scheduled thread pool that runs only 7 concurrent jobs but can queue/schedule more. ...
7
votes
1answer
2k 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 ...
7
votes
2answers
3k views

How to name the threads of a thread pool in Java

I have a Java application that uses the Executor framework and I have code that looks like this protected ScheduledExecutorService scheduledExecutorService = new ScheduledThreadPoolExecutor(5) My ...
2
votes
2answers
954 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 ...
7
votes
3answers
3k 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 ...
0
votes
3answers
586 views

Some questions about Threading in Java

First a little background. I got a warning in NetBeans told me not to start a new thread in a constructor. I have read that the reason for that is because the new thread might start and try to ...
5
votes
3answers
940 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
11answers
2k 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 = ...
2
votes
1answer
202 views

What is an elegant way for calling a custom close-method on each worker-thread in a Java threadpool?

say I'm using a ExecutorService ex = Executors.newFixedThreadPool(nrofthreads); spinning up some work and waiting when it's done. However I have same Threadlocal objects in the worker-threads ...
10
votes
9answers
4k 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 ...
1
vote
3answers
2k views

Can a java fixedThreadPool be used by multiple threads

I have a webservice that does multiple small calculations before returning the result. I want to use the ExecutorService provided by Executors.newFixedThreadPool() as a way to implement the Master - ...