Pooling resources in given limits and automatically assign task to open workers.

learn more… | top users | synonyms

71
votes
7answers
23k 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 ...
69
votes
10answers
19k 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 ...
55
votes
12answers
24k 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 ...
9
votes
1answer
4k views

Where do I create and use ScheduledThreadPoolExecutor, TimerTask, or Handler?

I need to make my RSS Feed reader check the feed every 10 minutes for new posts, and then parse them if there are new ones. I also need to update the UI about every minute. I have read and heard ...
30
votes
8answers
27k 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 ...
13
votes
3answers
10k views

AsyncTask.executeOnExecutor() before API Level 11

The normal way we do AsyncTask in Android is, from Android API: private class DoIntenseTask extends AsyncTask<Object, Object, Void> { protected Void doInBackground(Object... params) { ...
13
votes
5answers
10k views

WaitAll for multiple handles on a STA thread is not supported

Why do I get this error message? "WaitAll for multiple handles on a STA thread is not supported." Should I use [MTAThreadAttribute] attribut? Update: Dosn't work with WPF applications! Note: It ...
21
votes
2answers
25k 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: Code for a simple thread pool in C# especially helpful. However, as it always seems, ...
10
votes
2answers
10k 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!
16
votes
2answers
5k 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
1k views

boost::asio threadpool vs. io_service_per_cpu design

Currently I´m not sure, I try to make a high-performance server, I got a 6Core CPU, so if I would use the "io_service_per_cpu" design, I have 6 io_service´s. I already heard that the threadpool ...
8
votes
5answers
2k 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 ...
10
votes
5answers
5k views

How to implement PriorityBlockingQueue with ThreadPoolExecutor and custom tasks

I've searched a lot but could not find a solutuion to my problem. I have my own class, BaseTask, that uses a ThreadPoolExecutor to handle tasks. If I don't want prioritization (i.e. using a ...
25
votes
5answers
6k 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 ...
20
votes
9answers
13k 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.
14
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 } ...
5
votes
6answers
2k views

Using Task or async/await in IHttpAsyncHandler

Since the very begining of writing ASP.NET applications when I wanted to add a threading there are 3 simple ways I can accomplish threading within my ASP.NET application : Using the ...
5
votes
1answer
4k views

Threadpool in IIS context

I have a general question about System.Threading.Threadpool when run in a webapplication on IIS. Say we have 2 requests execute at once, and we fire up a couple of threads through the ...
10
votes
4answers
5k 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 ...
3
votes
1answer
1k views

Python multiprocessing pool inside daemon process

I opened up a question for this problem and did not get a thorough enough answer to solve the issue (most likely due to a lack of rigor in explaining my issues which is what I am attempting to ...
7
votes
8answers
4k 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 ...
4
votes
5answers
1k views

Time limit on individual threads with ExecutorService

I have an ExecutorService managing a number of Callables. The tasks that the Callables run are mostly black box transformations and number crunching. Under certain conditions, the data being ...
9
votes
6answers
1k views

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 ...
2
votes
1answer
419 views

AsyncTasks do not get collected causing other AsyncTasks to not run

My app uses a lot of AsyncTasks. It is a web app after all. And when I keep track of the Debug tab, I notice every AsyncTask says running behind it and after 5 AsyncTasks, I can't start any ...
0
votes
1answer
196 views

Doubts in the code of Thread Pool implementation

After spending lots of time with threadpool concepts and by reading different codes on numbers of blogs and posting questions on Stackoverflow.com, now I got clear image of this concept. But in the ...
0
votes
2answers
122 views

Regarding daemon thread providing some service to non daemon thread

I have one query that is I have developed a code below of multiple threads named thread one and thread two, below is the code .. class multip implements Runnable { public void run() { for (int i ...
33
votes
5answers
15k 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 ...
18
votes
4answers
3k 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 ...
8
votes
1answer
8k views

How can I shutdown Spring task executor/scheduler pools before all other beans in the web app are destroyed?

In a Spring web application I have several DAO and service layer beans. One service layer bean has annotated @Async / @Scheduled methods. These methods depend on other (autowired) beans. I have ...
10
votes
3answers
10k 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 ...
9
votes
7answers
841 views

Threads configuration based on no. of CPU-cores

Scenario : I have a sample application and I have 3 different system configuration - - 2 core processor, 2 GB RAM, 60 GB HHD, - 4 core processor, 4 GB RAM, 80 GB HHD, - 8 core processor, 8 GB RAM, ...
9
votes
2answers
10k views

How to increase thread-pool threads on IIS 7.0

Environment: Windows Server 2008 Enterprise, IIS 7.0, ASP.NET 2.0 (CLR), .NET 4.0 I have an ASP.NET application with no page and no session(HttpHandler). It a streaming server. I use two threads for ...
8
votes
4answers
3k 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 ...
5
votes
4answers
2k views

How to create LIFO executor?

I would like to create a thread pool which will execute the most recently submitted task. Any advice on how to accomplish this? Thank you
13
votes
3answers
8k 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 ...
5
votes
4answers
1k views

C# Downloader: should I use Threads, BackgroundWorker or ThreadPool?

I'm writing a downloader in C# and stopped at the following problem: what kind of method should I use to parallelize my downloads and update my GUI? In my first attempt, I used 4 Threads and at the ...
5
votes
1answer
767 views

Twisted: Creating a ThreadPool and then daemonizing leads to uninformative hangs

I am developing a networked application in Twisted, part of which consists of a web interface written in Django. I wish to use Twisted's WSGI server to host the web interface, and I've written a ...
3
votes
1answer
2k views

Lot of UDP requests lost in UDP server with Netty

I wrote a simple UDP Server with Netty that simply prints out in logs the messages (frames) received. To do that, I created a simple frame decoder decoder and a simple message handler. I also have a ...
2
votes
2answers
958 views

How can I accomplish ThreadPool.Join?

I am writing a windows service that uses ThreadPool.QueueUserWorkItem(). Each thread is a short-lived task. When the service is stopped, I need to make sure that all the threads that are currently ...
2
votes
2answers
664 views

Ruby: Any gems for threadpooling?

Is there a gem for threadpooling anyone can recommend?
5
votes
4answers
5k views

Java outofmemoryerror when creating <100 threads

I've been reading and testing and banging my head on the wall for over a day because of this error. I have some java code in a class called listener that looks like this ExecutorService executor = ...
4
votes
3answers
2k views

With ThreadPoolExecutor, how to get the name of the thread running in the thread pool?

I'm using a ThreadPoolExecutor in Java to manage a lot of running threads. I've created my own simple ThreadFactory so I can give the threads better names. The issue is that the name gets set in the ...
4
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
1k views

Simple thread pool in C++

Could anyone point me to a sample implementation of a thread pool in C++, please? I'm looking for a very basic one without too much complexity, which would be suitable for a beginner in threading to ...
2
votes
1answer
1k views

InheritableThreadLocal and thread pools

I have a problem which I don't really think has a solution but I'll try here anyway. My application uses a thread pool and some of the threads in this pool have an inheritable thread local variable. ...
2
votes
3answers
3k views

How to reuse threads in .NET 3.5

I have a subroutine that processes large blocks of information. In order to make use of the entire CPU, it divides the work up into separate threads. After all threads have completed, it finishes. ...
0
votes
1answer
189 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 ...
5
votes
4answers
1k views

When ThreadPool.QueueUserWorkItem returns false

The MSDN states that the method returns true if the method is successfully queued; NotSupportedException is thrown if the work item is not queued. For testing purposes how to get the method ...
4
votes
2answers
439 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 ...
1
vote
3answers
781 views

What change did really happen in Async Task after Android Gingerbread?

What change did really Android team make in Async task after android 2.3. When I executed the following code I am getting same result in both Android 2.3 and 3.0. package com.sample.asynctask; ...

1 2 3 4