Tagged Questions
A tag redundant to threadpool
45
votes
11answers
10k views
Using ThreadPool.QueueUserWorkItem in ASP.NET in a high traffic scenario
I've always been under the impression that using the ThreadPool for (let's say non-critical) short-lived background tasks was considered best practice, even in ASP.NET, but then I came across this ...
35
votes
7answers
11k views
Thread vs ThreadPool
What is the difference between using a new thread and using a thread from the thread pool? What performance benefits are there and why should I consider using a thread from the pool rather than one ...
16
votes
8answers
12k views
Code for a simple thread pool in C#
Looking for some sample code (C#) for a simple thread pool implementation.
I found one on codeproject, but the codebase was just huge and I don't need all that functionality.
This is more for ...
15
votes
5answers
6k views
How to catch exceptions from a ThreadPool.QueueUserWorkItem?
I have the following code that throws an exception:
ThreadPool.QueueUserWorkItem(state => action());
When the action throws an exception, my program crashes. What is the best practice for ...
14
votes
10answers
5k views
Multithreaded job queue manager
I need to manage CPU-heavy multitaskable jobs in an interactive application. Just as background, my specific application is an engineering design interface. As a user tweaks different parameters and ...
8
votes
9answers
3k views
Resonable number of threads for thread pool in Java
When creating an FixedThreadPool Executor object in Java you need to pass an argument describing the number of threads that the Executor can execute concurrently. I'm building a service class that's ...
8
votes
5answers
5k views
ThreadPool.QueueUserWorkItem with a lambda expression and anonymous method
Passing two parameters to a new thread on the threadpool can sometimes be complicated, but it appears that with lambda expressions and anonymous methods, I can do this:
public class TestClass
{
...
7
votes
4answers
4k views
Deadlock in ThreadPool
I couldn't find a decent ThreadPool implementation for Ruby, so I wrote mine (based partly on code from here: http://snippets.dzone.com/posts/show/3276 , but changed to wait/signal and other ...
6
votes
2answers
799 views
Will values in my ThreadStatic variables still be there when cycled via ThreadPool?
I am using ThreadStatic variables to store some data, but I am worried that the data I store on the thread will still be there after I am finished with it and release back to the ThreadPool. Do I ...
6
votes
2answers
2k views
Threading and lambda expressions
What is the difference between the two piecees of code below. will there be any issues using the second one.
Scenario 1
private void Log(Exception e)
{
ThreadPool.QueueUserWorkItem(new ...
6
votes
8answers
2k views
be notified when all background threadpool threads are finished
I have a scenario when I start 3..10 threads with ThreadPool.
Each thread does its job and returns to the ThreadPool.
What are possible options to be notified in main thread when all background ...
5
votes
5answers
1k views
Java Thread Pool
I want to learn to write a thread pool in Java
Can anyone point me to useful resources ?
5
votes
2answers
749 views
What is a Thread-pool?
What is the concept of implementing Thread-pool (in C with help from pthreads)?
how can a thread be assigned to execute from the thread pool ?
5
votes
4answers
5k views
Java Threadpool vs. new Thread in high request scenario
I have some old java code for a REST service that uses a separate thread for every incoming request. I.e. the main loop would loop on socket.accept() and hand off the socket to a Runnable which then ...
4
votes
2answers
104 views
How can I kill a pthread that is in an infinite loop, from outside that loop?
I create a thread and I put it into an infinite loop. I get memory leaks when checking the code with valgrind. Here is my code:
#include <pthread.h>
#include <time.h>
void ...
4
votes
4answers
371 views
Thread.Start() versus ThreadPool.QueueUserWorkItem()
The Microsoft .NET Base Class Library provides several ways to create a thread and start it. Basically the invocation is very similar to every other one providing the same kind of service: create an ...
4
votes
4answers
1k views
Recursively adding threads to a Java thread pool
I am working on a tutorial for my Java concurrency course. The objective is to use thread pools to compute prime numbers in parallel.
The design is based on the Sieve of Eratosthenes. It has an array ...
4
votes
2answers
891 views
Single or multiple thread pools for Java server?
I am writing a fairly complex Java server application which has a significant background processing portion in addition to the usual request-response processing. Some of the background processing is ...
4
votes
2answers
4k views
Problem with Java ThreadFactory
IN my app I use a threadpool with a custom ThreadFactory.
My code looks like:
pool = Executors.newScheduledThreadPool(10, new TF());
class TF implements ThreadFactory {
AtomicInteger count = ...
4
votes
2answers
907 views
ThreadPool Best Practices, Correctness
Hey everyone. I've been working on some code for a while that would spawn threads when needed, but decided a simpler and more effective solution would be to create a thread pool. It's implemented with ...
4
votes
2answers
2k views
Use asynchronous delegates or ThreadPool.QueueUserWorkItem for massive parallelism?
I have a .NET application that processes around 300,000 records in a batch import, and it takes a few seconds per record so I would like to parallelize this. In the following code, what's the ...
3
votes
3answers
161 views
Java Thread Pool Synchronization
I would like to perform the following algorithm - this must be done in Java
for(int i = 0; i< 100; i++){
create 8 threads which perform a task
wait for all threads to finish
}
It is ...
3
votes
1answer
461 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
3answers
335 views
How expensive is creating of a new thread in Java? When should we consider using of a thread pool?
I wonder where is the verge after which a thread pool should be used. How many new threads per second can I create without using a thread pool still avoiding noticeable performance penalty?
Are there ...
3
votes
4answers
1k views
Minimizing Java Thread Context Switching Overhead
I have a Java application running on Sun 1.6 32-bit VM/Solaris 10 (x86)/Nahelem 8-core(2 threads per core).
A specific usecase in the application is to respond to some external message. In my ...
3
votes
3answers
1k views
specifying ThreadPoolExecutor problem
Is there any way to create Executor that will have always at least 5 threads, and maximum of 20 threads, and unbounded queue for tasks (meaning no task is rejected)
I tried new ThreadPoolExecutor(5, ...
3
votes
3answers
512 views
ThreadPool giving amazing results, did I do this right? (no, I didn't)
Not that I'm not appreciative of the powers of multithreading or ThreadPool, but I'm scared I broke something since I'm getting a roughly 20x speed increase (2-3s down from over a minute) with a ...
3
votes
4answers
1k views
Design considerations for an adaptive thread pool in Java
I would like to implement a thread pool in Java, which can dynamically resize itself based on the computational and I/O behavior of the tasks submitted to it.
Practically, I want to achieve the same ...
3
votes
3answers
2k views
c# migrate a single threaded app to multi-threaded, parallel execution, monte carlo simulation
I've been tasked with taking an existing single threaded monte carlo simulation and optimising it. This is a c# console app, no db access it loads data once from a csv file and writes it out at the ...
3
votes
6answers
591 views
C++ master/worker
I am looking for a cross-platform C++ master/worker library or work queue library. The general idea is that my application would create some sort of Task or Work objects, pass them to the work master ...
3
votes
3answers
2k views
.NET Custom Threadpool with separate instances
What is the most recommended .NET custom threadpool that can have separate instances i.e more than one threadpool per application?
I need an unlimited queue size (building a crawler), and need to run ...
3
votes
1answer
405 views
Thread pool with dependency support?
Does anyone know of a thread-pool like implementation for .NET that supports the following features:
dependencies between tasks
task priorities
sub-tasks
Basically I'd like to throw a bunch of ...
3
votes
3answers
2k views
Exceptions on .Net ThreadPool Threads
Duplicate: How to catch exceptions from a ThreadPool.QueueUserWorkItem?
I am queueing up multiple delegates on the .Net ThreadPool for a large number of independant remoting calls that themselves ...
3
votes
2answers
2k views
Detecting that a ThreadPool WorkItem has completed/waiting for completion
For whatever reason, ThreadPool's QueueWorkItem doesn't return an IAsyncResult or some other handle to the work item, which would allow to wait until it's completed. There are RegisterWait... methods, ...
3
votes
3answers
799 views
Is it possible for two ExecutorServices to share a thread pool?
I've got a collection of records to process, and the processing can be parallelized, so I've created an ExecutorService (via Executors#newCachedThreadPool())). The processing of an individual record ...
3
votes
3answers
1k views
Generic ThreadPool in .NET
Here's a relatively common task for me, and, I think, for many a .NET programmer:
I want to use the .NET ThreadPool for scheduling worker threads that need to process a given type of tasks.
As a ...
2
votes
2answers
106 views
Can a ThreadPool be used from a Thread in C#?
I am working on a small app that will use threads to make some web requests. I want that when pressing X button a main Thread starts and that would manage the ThreadPool, because depending on the ...
2
votes
3answers
966 views
How to create threads in ASP.NET pages from CLR thread pool instead of ASP.NET pool?
If I create a new thread on an ASP.NET page the IsThreadPoolThread property is true.
First question is, is it from ASP.NET pool or CLR pool ?
Second question is, if it is from ASP.NET pool then how to ...
2
votes
3answers
269 views
threads in a threadpool
I have been reading about threadpools. A number of sites say that the default max threads on a threadpool is 25 (per processor). however i have not modified the max threads and when i do :
...
2
votes
4answers
616 views
What is the use of a Thread pool in Java?
What is the use of a Thread pool? Is there a good real world example?
2
votes
5answers
780 views
.NET Thread Pool - Unresponsive WinForms UI
Scenario
I have a Windows Forms Application. Inside the main form there is a loop that iterates around 3000 times, Creating a new instance of a class on a new thread to perform some calculations. ...
2
votes
4answers
1k views
C# lower thread priority in thread pool
I have several low-imprtance tasks to be performed when some cpu time is available. I don't want this task to perform if other more import task are running. Ie if a normal/high priority task comes I ...
2
votes
2answers
1k views
Java email sending queue - fixed number of threads sending as many messages as are available
I'm writing a message processing application (email) that I want to have an outgoing queue. The way I've designed this is having a singleton queue class, ThreadedQueueSender, backed by an Executor ...
2
votes
1answer
707 views
Does changing the culture of a threadpool thread affect it when it gets returned back to the pool?
If I set the CurrentCulture of a thread pool thread, what happens when the thread finishes execution and gets returned back to the thread pool? Does it get its CurrentCulture reset back to the ...
2
votes
3answers
857 views
Too Many Threads Exception
I am facing problem in blackberry development. In my application I have to get images from the server, so i have to create a separate connection thread for each image i load from the server..but in ...
2
votes
1answer
757 views
Boost Priority pool sample?
I am working on a Boost thread pool.
I have a structure like this:
class SimThreadPool
{
static SimThreadPool* getInstance();
boost::threadpool::prio_pool& getThreadPool() { return ...
2
votes
2answers
3k views
C#: Asynchronous delegates vs ThreadPool.QueueUserWorkItem when initiating many connections
I have to send many web service calls out to delete a bunch of records in Amazon SDB (unfortunately, rows can only be deleted one at at time currently).
I am using Amazon's SDB c# library which does ...
2
votes
5answers
551 views
How to keep message-pumping while waiting?
I have an application that is based on a message-pump thread-pool archtecture. Whenever there is an action that could block, it is implemented as "callback on complete/trigger evnet" action, so it ...
2
votes
3answers
130 views
How to solve this specific threading problem
Using the code from the following article, I implemented an own ThreadPool:
http://www.developer.com/net/article.php/3783756
This is what I want to achieve:
Triggered through a Timer, a service ...
2
votes
2answers
447 views
.Net CF Running Thread for lifetime of an application
I am developing a .Net Compact framework application in C# which utilises some third party message queuing software installed on the device.
I am fairly new to this environment and was wondering if I ...