Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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. Each of these records contains connection information to external FTP sites [basically it is a queue of files to transfer]. A lot of them are to the same host, just moving different files. Therefore, I am grouping them together by host. I want to be able to create a new thread per host. I really don't care when the transfers finish, they just need to do all the work (or try to do) they were assigned, and then terminate once they are finished, cleaning up all resources they used in the process.

I anticipate no more than 10-25 connections to be established. Once the transfer queue is empty, the program will simply wait until there are records in the queue again.

Is the ThreadPool a good candidate for this or should I use a different approach?

Edit: For the most part, this is the only significant custom application running on the server.

like image 521
Bryan Crosby Avatar asked Jun 14 '10 15:06

Bryan Crosby


People also ask

What is an ideal ThreadPool size?

So the ideal thread pool size is 4 cores * 2 * ( 1 + 9 ) = 80. If all 100ms are calculation, 0ms is waiting. the blocking coefficent is 0. The ideal thread pool size is 4 * 2 * 1 = 8.

How many maximum threads can be created using a ThreadPool?

ThreadPool can automatically increase or reduce the number of active threads to maximize task execution efficiency. The maximum allowed number of processing threads in a pool is 1023. The pool allocates a maximum of 1000 threads in an I/O operation.

What is the difference between thread and ThreadPool?

A thread pool is - as the name suggests - a pool of worker threads which are always running. Those threads then normally take tasks from a list, execute them, then try to take the next task. If there's no task, the thread will wait.


2 Answers

No, the thread pool isn't appropriate. The thread pool is really designed for "short tasks that require background processing," since the framework depends on the availability of thread pool threads, and long-running processes can exhaust the thread pool.

Ftp transfers take a relatively long time (even with a reasonable timeout), so they aren't really a good fit. You may be able to get by using the thread pool, but you may also find yourself running into inexplicable bugs if you use it. It depends how much your application uses thread-pool dependent framework features (asynchronous delegates, etc.).

The MSDN topic "The Managed Thread Pool" offers good guidelines for when not to use thread pool threads:

There are several scenarios in which it is appropriate to create and manage your own threads instead of using thread pool threads:

  • You require a foreground thread.
  • You require a thread to have a particular priority.
  • You have tasks that cause the thread to block for long periods of time. The thread pool has a maximum number of threads, so a large number of blocked thread pool threads might prevent tasks from starting.
  • You need to place threads into a single-threaded apartment. All ThreadPool threads are in the multithreaded apartment.
  • You need to have a stable identity associated with the thread, or to dedicate a thread to a task.
like image 97
Jeff Sternal Avatar answered Oct 06 '22 00:10

Jeff Sternal


From what you have described, it sounds like the threadpool would be a good fit.

Issues:

  1. A threadpool thread will not keep your process alive on shutdown. Make sure that's the behavior you want.

  2. In older reading, tying up the threadpool with long-runnign tasks when the app might be waiting on incomping connections (like a web app) could be bad. However, it sounds like you have a dedicated windows service running, so I don't think this is an issue.

  3. Just because you throw 10 jobs at the thread pool does not mean that it will immediately dispatch 10 threads to do the work -- you are delegating the decision of how many threads to use to .net and the o/s.

like image 45
JMarsch Avatar answered Oct 05 '22 23:10

JMarsch