Pooling resources in given limits and automatically assign task to open workers.
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 ...
27
votes
13answers
9k views
How many threads is too many?
I am writing a server, and I branch each action off into a thread when the request is incoming. I do this because almost every request is a database query. I am using a threadpool library to cut down ...
18
votes
14answers
536 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 ...
15
votes
4answers
5k views
C# - ThreadPool vs Tasks
As some may have seen in .NET 4.0, they've added a new namespace System.Threading.Tasks which basically is what is means, a task. I've only been using it for a few days, from using ThreadPool.
Which ...
14
votes
3answers
605 views
Existing threadpool C implementation
What open-source implementation(s) in C for a pthreads thread pool would you recommend ?
Additional points if this implementation is :
Light-weight: glib, APR, NSPR and others come with a big ...
13
votes
4answers
919 views
C# - When to use standard threads, ThreadPool, and TPL in a high-activity server
I've been reading a lot about threading lately as I am looking to develop a high-performance, scalable TCP server capable of handling up to 10,000-20,000 clients, each client of which is consistently ...
12
votes
4answers
545 views
How to re-use a thread in Java?
I am a building a console Sudoku Solver where the main objective is raw speed.
I now have a ManagerThread that starts WorkerThreads to compute the neibhbors of each cell. So one WorkerThread is ...
11
votes
8answers
643 views
What's the best way to have multiple threads doing work, and waiting for all of them to complete?
I'm writing a simple app (for my wife no less :-P ) that does some image manipulation (resizing, timestamping etc) for a potentially large batch of images. So I'm writing a library that can do this ...
11
votes
4answers
15k views
C# thread pool limiting threads
Alright...I've given the site a fair search and have read over many posts about this topic. I found this question: http://stackoverflow.com/questions/435668/code-for-a-simple-thread-pool-in-c ...
10
votes
7answers
6k views
ExecutorService, how to wait for all tasks to finish
What is the simplest way to to wait for all tasks of ExecutorService to finish? My task is primarily computational, so I just want to run a large number of jobs - one on each core. Right now my setup ...
9
votes
4answers
135 views
+50
Sporadic problems in running a multi-threaded Java project in Win7
I am working on a project that is both memory and computationally intensive. A significant portion of the execution utilizes multi-threading by a FixedThreadPool. In short; I have 1 thread for ...
9
votes
3answers
208 views
How many threads to use?
I know there are some existing questions and they provide a very good general perspective on things. I'm hoping to get some details on the C#/VB.Net side for the actual implementation (not ...
9
votes
5answers
2k views
C++ Thread Pool
What is a good open source implementation of a thread pool for C++ to use in production code (something like boost)?
Please provide either your own example code or a link to example code usage.
9
votes
4answers
469 views
Exception handling in ThreadPools
I have a ScheduledThreadPoolExecutor that seems to be eating Exceptions. I want my executor service to notify me if a submitted Runnable throws an exception.
For example, I'd like the code below to ...
8
votes
4answers
292 views
C# Catching exception which is occuring on ThreadPool
I am investigating some crashes in my application caused by a Win32 exception, and I have narrowed it down that it must be occuring in the threadpool which is taking care of the ...
8
votes
3answers
133 views
Sleeping in a pooled C# thread
In this web tutorial on threading in C#, Joseph Albahari writes: "Don't go sleeping in pooled threads!" Why should you not do this? How badly can it affect performance? (It's not that I want to do it; ...
8
votes
6answers
299 views
.NET: Why *not* change the priority of a ThreadPool (or Task) thread?
There are many places across the web and stackoverflow where one is discouraged from changing the priority of a ThreadPool thread or TPL Task. In particular:
"You have no control over the state ...
8
votes
4answers
648 views
Why does ScheduledThreadPoolExecutor only accept a fixed number of threads?
I may imagine some tasks scheduled to take a very long time and ScheduledThreadPoolExecutor would create additional threads for the other tasks that need to be run, until a maximum number of threads ...
8
votes
3answers
1k views
TaskFactory.StartNew versus ThreadPool.QueueUserWorkItem
Apparently the TaskFactory.StartNew method in .NET 4.0 is intended as a replacement for ThreadPool.QueueUserWorkItem (according to this post, anyway). My question is simple: does anyone know why?
...
8
votes
5answers
2k views
Calling Thread.Abort on a thread from a ThreadPool
My co-worker is using a third-party .NET library for which we don't have the source code. We're using a ThreadPool to have a lot of threads call into this library, and occasionally one of the threads ...
8
votes
2answers
555 views
What is the C# equivalent of MsgWaitForMultipleObjects?
I have a Windows Form with a ListView in Report Mode. For each item in the view, I need to perform a long running operation, the result of which is a number.
The way I would do this in native win32 ...
7
votes
3answers
503 views
Java Thread Pool with a Bounded Queue
I'm using java.util.concurrent's Executors class to create a fixed thread pool for running request handlers for a web server:
static ExecutorService newFixedThreadPool(int nThreads)
and the ...
7
votes
5answers
1k views
Should i use ThreadPools or Task Parallel Library for IO-bound operations
In one of my projects that's kinda an aggregator, I parse feeds, podcasts and so from the web.
If I use sequential approach, given that a large number of resources, it takes quite a time to process ...
7
votes
3answers
3k views
A very simple thread pool using pthreads in C++
I'm trying to understand some of the basics of using POSIX pthreads. The kind of thing I need to do (eventually) is parallelize some computations, using a thread pool model. At present I want to ...
7
votes
4answers
631 views
Which ThreadPool in Java should I use?
There are a huge amount of tasks.
Each task is belong to a single group. The requirement is each group of tasks should executed serially just like executed in a single thread and the throughput should ...
7
votes
4answers
889 views
How to log correct context with Threadpool threads using log4net?
I am trying to find a way to log useful context from a bunch of threads. The problem is that a lot of code is dealt with on Events that are arriving via threadpool threads (as far as I can tell) so ...
7
votes
3answers
5k views
Can i use boost::threadpool as a 'thread-safe queue'?
What I need is actually a thread-safe queue structure, where multiple clients keep dumping data into the queue and one working thread keeps processing and popping the queue
is there any ...
6
votes
3answers
102 views
Should .Net 4.0 Tasks always be the preferred method for multi-threaded applications?
I was reading about the Task Parallel Library and the article said:
In the .NET Framework 4, tasks are the preferred API for writing multi-threaded, asynchronous, and parallel code
But it also ...
6
votes
2answers
3k views
Creating a thread pool using boost
Is it possible to create a thread pool using boost's thread?
i was looking all over boost's libs and I couldn't find a thread pool manager (or something like that)...
Is there a way to do it?
tnx!
6
votes
4answers
230 views
Ensuring Thread Safety
I am in the midst of writing a C# Windows Form application that processes quotes from the market through an algorithm (strategy) to create orders to a brokerage firm. That all seems to be testing ...
6
votes
5answers
912 views
How would you change my Heartbeat process written in C#?
I'm looking at implementing a "Heartbeat" process to do a lot of repeated cleanup tasks throughout the day.
This seemed like a good chance to use the Command pattern, so I have an interface that ...
6
votes
3answers
3k views
ThreadPool SetMaxThreads and SetMinThreads Magic Number
Is there a magic number or formula for setting the values of SetMaxThreads and SetMinThreads for ThreadPool? I have thousands of long-running methods that need execution but just can't find the ...
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 ...
6
votes
4answers
603 views
Accessing scoped proxy beans within Threads of
I have a web application running in tomcat where I'm using a ThreadPool (Java 5 ExecutorService) to run IO intensive operations in parallel to improve performance. I would like to have some of the ...
5
votes
1answer
98 views
When do I use System.Threading.ThreadPool and when do I use one of the many custom thread pools?
I'm working on creating an asynch handler for asp.net that will execute a slow stored procedure. I think I understand that to gain additional throughput on a mix load of slow and fast pages, that the ...
5
votes
4answers
136 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 ...
5
votes
1answer
453 views
C# thread count
What would be the appropriate way to setup the ThreadPool in C#?
ThreadPool.SetMaxThreads(int workerThreads, int completionPortThreads)
I want the number of threads to equal the number of processor ...
5
votes
3answers
965 views
HttpClient memory management
I have an application that has a thread pool (ThreadPoolExecutor) that is handed tasks that each perform a HttpGet operation and read the InputStream into a byte[] to do something with.
After reading ...
5
votes
2answers
2k views
TaskCreationOptions.LongRunning option and ThreadPool
TPL uses Task Schedulers to coordinate tasks. According to official document, default task scheduler uses Thread Pool, but if TaskCreationOptions.LongRunning option is presented then it will create a ...
5
votes
2answers
325 views
C# How to count managed threads in my AppDomain?
Is there a way to find out how many managed thread I use (including ThreadPool)?
When I get count of unmanaged threads through GetProcess I have an insane number of it (21 at very beginning)
5
votes
3answers
248 views
Threadpool design question
I have a design question. I want some feedback to know if a ThreadPool is appropriate for the client program I am writing.
I am having a client running as a service processing database records. ...
5
votes
7answers
2k views
.NET ThreadPool QueueUserWorkItem Synchronization
I am employing ThreadPool.QueueUserWorkItem to play some sound files and not hanging up the GUI while doing so.
It is working but has an undesirable side effect.
While the QueueUserWorkItem CallBack ...
5
votes
5answers
1k views
Wait until all threads teminated in ThreadPool
var list = new List<int>();
for(int i=0;i<10;i++) list.Add(i);
for(int i=0;i<10;i++)
{
ThreadPool.QueueUserWorkItem(
new WaitCallback(x => {
...
5
votes
3answers
238 views
is it acceptable to use ThreadPool in a library?
is it acceptable to use ThreadPool in a library?
because that obviously might cause some unpleasant problems if the user of your library is using ThreadPool as well (due to ThreadPool being a static ...
4
votes
2answers
83 views
Thread Pooling: Cross-thread operation not valid.
I am quite new when it comes to threading but I am getting an InvalidOperationException when using the following code. I understand that it is trying to access importFileGridView but this was created ...
4
votes
1answer
66 views
ThreadPool Exception
I need to use 60 threads in one time(parallelly) and for it I use ThreadPool. I have exception here:
temp = 1;
for (int j = 0; j < temp; j++) {
ThreadPool.QueueUserWorkItem(delegate(object ...
4
votes
1answer
85 views
Getting a timer in a JavaEE friendly way that works on JavaSE too (for use in a JDBC driver)
I'm interested in doing some work on the PostgreSQL JDBC driver to help with an implementation of Statement.setQueryTimeout(...), one of the more problematic spec conformance holes in the driver. To ...
4
votes
1answer
348 views
Android - Thread pool strategy and can Loader be used to implement it?
First the problem:
I'm working on the application that uses multiple FragmentLists
within a customized FragmentStatePagerAdapter. There could be,
potentially substantial number of such fragments say ...
4
votes
4answers
164 views
Is Thread managed by the thread pool?
I know that the CLR gives each AppDomain ThreadPool time slice to work , yet i wanted to know if by creating a new thread like so Thread t = new Thread(...);
Is it managed by the CLR or by the ...
4
votes
3answers
135 views
Threads within threads in Java?
I am currently thinking about how to design a multithreading system in Java that needs to do some heavy network processing and database storage. The program will launch three basic threads at first. ...