It's not infrequent in my practice that software I develop grows big and complex, and various parts of it use executors in their own way. From the performance point of view it would be better to use different thread pool configurations at each part. But from the maintainability and code-usability points it would be more preferable if all things related to threads, concurrency and CPU-utilization were kept and configured at some centralized place.

Having each class which needs some concurrent execution or scheduling create its own thread pool is not OK, because it is hard to control their life-cycles and overall number of threads.

Creating some kind of ExecutorManager and passing one thread pool around the application is not OK either, because, depending on type of the task and submitting rate, inappropriately configured combination of working queue and thread pool size can harm performance really bad.

So the question is: are there some common approaches that address this issue?

link|improve this question
It sounds like your real problem is finding a simple way to manage the life cycle of your components. If you have a simple way to manage your components and make sure only a minimum of them create threads you shouldn't have any problems. Unless you are talking about IO, you don't need more threads than you have cores. – Peter Lawrey Nov 11 '11 at 15:54
feedback

1 Answer

How about a thread pool manager? Try this: Managing Threads in Java SE http://coopsoft.com/ar/j2searticle.html

ed

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.