Tagged Questions
0
votes
1answer
187 views
Performance Issues with newFixedThreadPool vs newSingleThreadExecutor
I am trying to Benchmark our Client code. So I decided I will write a multithreading program to do the benchmarking of my client code. I am trying to measure how much time (95 Percentile) below method ...
1
vote
2answers
89 views
How to reset a thread pool efficiently
I'm using a thread pool to enable multiple unimportant tasks to be queued and (potentially) executed however I need to be able to easily cancel all queued and executing tasks and start a new queue ...
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 ...
1
vote
4answers
103 views
Upgrading old thread-pool code to new concurrency classes
I am in the process of updating some old Java code which I haven't touched in ages. My question relates to what is the best way to do thread pools now?
Previously I used the concurrency util class's:
...
1
vote
1answer
92 views
How many threads should I use to render an image?
I've seen very similar questions about, but none seem to offer any scientific evaluation. My problem is that I want to optimize the number of threads being used in my Java thread pool for a fractal ...
0
votes
1answer
143 views
Java Concurrent Object Pool?
I tried to integrate an external non-thread-safe library to my web project; I found out that it's too expensive to create an instance of this object for each client thread.
As a result, I would like ...
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 ...
0
votes
0answers
33 views
How to set the cyclic Barrier for this Class
How to handle this, While I try to poll and update my database for the following classes using thread pools.
The Run method for Polling class:
public void run() {
int seqId = 0;
...
0
votes
3answers
82 views
Effecient way of moving multiple vehicles in a simulation
So, I'm in doubt to which way is the most optimal in the situation given below:
I have a simulation of vehicles moving along roads on a map. Moving them is no problem and they obey traffic lights ...
0
votes
2answers
111 views
Issues while trying to implement my own ThreadPool (Concept problems)
I wanted to share my thoughts with you.
Consider you have to implement a Pool of Threads by yourself.
I thought of it to have some member field like private static List<Thread> of Threads to be ...
3
votes
2answers
120 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 = ...
1
vote
4answers
108 views
How to take and handle object from multiple threads in Java? How to create Multiple instances of Future
I need to create bunch of JMX connections to different hosts. I'm trying to create these connections in parallel. In this performance is much better now.
I've method to which I'm passing Collection ...
2
votes
1answer
75 views
How pass these new messages to another class
Now basically I have created three classes.
public void run() {
int seqId = 0;
while(true) {
List<KamMessage> list = null;
try {
list = fullPoll(seqId);
} catch ...
4
votes
1answer
281 views
ExecutorService shutdown hook
I have console application with following threading code. It seems when i hit Ctrl+C to terminate it does not detect control keys, i have to close command prompt window.
Any clues why it is not ...
11
votes
3answers
486 views
Is it really my job to clean up ThreadLocal resources when classes have been exposed to a thread pool?
My use of ThreadLocal
In my Java classes, I sometimes make use of a ThreadLocal mainly as a means of avoiding unnecessary object creation:
@net.jcip.annotations.ThreadSafe
public class ...
4
votes
2answers
349 views
(Thread pools in Java) Increasing number of threads creates slow down for simple for loop. Why?
I've got a little bit of work that is easily parallelizable, and I want to use Java threads to split up the work across my four core machine. It's a genetic algorithm applied to the traveling salesman ...
1
vote
2answers
166 views
XNA only using 1 core for 4 ThreadPool tasks?
I'm creating a physics simulation, which is meant to be realistic, and I have it working correctly, but the framerate drops off quite quickly.
I'm iterating through each of the objects, and then ...
0
votes
2answers
147 views
Building an asynchronous queue in Ruby
I need to process jobs off of a queue within a process, with IO performed asynchronously. That's pretty straightforward. The gotcha is that those jobs can add additional items to the queue.
I think ...
2
votes
2answers
954 views
Simple ThreadPool implementation
I want to understand logic of thread pool, and below there is a simple incorrect and not full implementation of it:
class ThreadPool {
private BlockingQueue<Runnable> taskQueue;
public ...
3
votes
2answers
314 views
What is optimum thread pool size for simple program running cpu based tasks in Java
Im using a thread pool to execute tasks , that are mostly cpu based with a bit of I/O,
of size one larger than the number of cpus.
...
5
votes
2answers
331 views
Schedule periodic tasks in Java, avoid creating new threads untill necessary (like CachedThreadPool)
I have a number of tasks that I would like to execute periodically at different rates for most tasks. Some of the tasks may be scheduled for simultanious execution though. Also, a task may need to ...
3
votes
1answer
250 views
ExecutorService suitable for a huge amount of short-lived tasks
Is there an ExecutorService that is suitable for a huge amount of very short-lived tasks? I envision something that internally tries busy waiting before switching over to synchronized waiting. Keeping ...
3
votes
1answer
231 views
ThreadPool implemented with OpenMP
I need to implement a thread pool executor for generic tasks. My idea is to use OpenMP for thread management. The problem is that I'm not familar yet with OpenMP..
I tried to find an existing ...
0
votes
3answers
213 views
Best way to wait on tasks to complete before adding new ones to threadpool in Java?
I want to use something like a ThreadPoolExecutor to manage running a bunch of tasks on available threads. These tasks are all of the same type but deal with different accounts. New tasks for these ...
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 ...
1
vote
2answers
168 views
How can I make this code more concurrent?
I have a piece of code which is similar to the following:
final int THREADS = 11;
BlockingQueue<Future<Long>> futureQueue = new ArrayBlockingQueue<Future<Long>>(THREADS); ...
0
votes
2answers
560 views
Using a shared ExecutorService as a task queue, how do I know when a job is complete?
I have a JobService that processes larger jobs. Jobs are dynamically subdivided into multiple tasks, tasks also might generate sub-tasks, etc, so its not possible to predict the total number of tasks ...
2
votes
2answers
180 views
ThreadPoolExecutor and RejectedExecutionExceptionHandler
I want to use a bounded queue for a ThreadPoolExecutor but I want to use my custom RejectedExecutionExceptionHandler. I would need to do that so that I can put rejected tasks to a separate queue and ...
0
votes
3answers
68 views
How could I integrate executors here? Or how could I improve this threading pool?
Currently I have a construct that does the following:
An X number of threads (X being a configurable variable from the user) are all started and await for a task to become available. The threads block ...
1
vote
4answers
2k views
Java Multithreading best practise : newFixedThreadPool
I want to launch a lot of tasks to run on a database of +-42Mio records. Yet I want to run this in batches of 5000 records/time (results in 850 tasks).
I want to limit the number of threads (to 16) ...
1
vote
1answer
111 views
Worker pool where certain tasks can only be done by certain workers
I have a lot of tasks that I'd like to execute a few at a time. The normal solution for this is a thread pool. However, my tasks need resources that only certain threads have. So I can't just farm ...
3
votes
4answers
882 views
How to restart schedule when scheduleWithFixedDelay throws an exception?
I use ScheduledExecutorService to schedule some tasks which need to run periodically.
I want to know whether this code works to recover the schedule when an exception happens.
...
2
votes
2answers
141 views
Stress test service endpoint, send 100K requests using x threads
I want to stress test my service endpoint, making http POST requests.
I want the solution to be able to either:
Make a certain number of requests, like 100K
Keep running for x number of minutes
...
4
votes
2answers
432 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 ...
10
votes
6answers
583 views
Handling tasks with different priorities in a thread pool
I have many incoming tasks of priority A, B and C and I want to handle the tasks with a thread pool on a multicore CPU. 70% of the CPU should be used to process 'type A' tasks, 20% of the CPU for ...
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
1answer
260 views
Groovy GPars, need index for each thread launched
Using GPars with Groovy, I launch 3 threads to do some work in parallel...
GParsPool.withPool(3){
result = myList.collectParallel{
processItem(it)
}
}
This works fine, but I need an ...
3
votes
1answer
245 views
Custom order of tasks within ThreadPool
I currently use FixedThreadPool to download images from the web, like this:
ExecutorService mThreadPool = Executors.newFixedThreadPool(MAX_THREADS);
And then I just submit new Runnables with image ...
0
votes
0answers
54 views
determining whether all threads in a pool are not active
Is there a way to determine no waiting tasks in the queue and all threads having been finished for java.util.concurrent.ThreadPoolExecutor?
Now I do it in the hook afterExecute by checking ...
0
votes
2answers
132 views
Find out if another .Net thread is blocked?
When having started another .Net thread, is it possible to check whether it is currently blocked (e.g. synchronous I/O taking place)? I don't want to use a timeout or such, all I want is to know (from ...
2
votes
2answers
115 views
How to add tasks to a tango (D) ThreadPool asynchroniously ?
I am comparing a task queue/thread pool pattern system to an n-threads system in D. I'm really new to the D programming language but have worked with threads in C, Java, and Python before. I'm using ...
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 ...
3
votes
3answers
368 views
Persistent Variables in ExecutorService (Java)
I've created a pool of 4 worker threads to process some files. In the test there's about 200 of them. The thread pool version is already about 3 times faster than doing it sequentially but there is ...
3
votes
3answers
249 views
Use ThreadPool or Thread
I had 1 collection which I was saving the content to a persistent storage. Then I ended up having 3 collections which i like to save to a persistent storage.
At first I was using a ThreadPool to ...
3
votes
2answers
729 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 ...
7
votes
4answers
949 views
What is best way to have Bounded Queue with ScheduledThreadPoolExecutor?
The Sun Java (1.6) ScheduledThreadPoolExecutor which is an extension of ThreadPoolExecutor internally uses an implementation of DelayQueue which is an unbounded queue. What I need is a ...
21
votes
14answers
3k views
Ensuring task execution order in threadpool
I have been reading about the thread-pool pattern and I can't seem to find the usual solution for the following problem.
I sometimes want tasks to be executed serially. For example, I read chunks of ...
0
votes
4answers
508 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
109 views
java parallelisation problem - parallelisation is as slow as serialisation
I have been developing an individual base model. All you need to know is that individuals are born, reproduce and die. I have a GUI in which i can see these processes happening.
I have a mac pro, ...
3
votes
2answers
707 views
a “simple” thread pool in java
Im looking for a simple object that will hold my work threads and I need it to not limit the number of threads, and not keep them alive longer than needed.
But I do need it to have a method similar to ...



