Is there any good reason for .NET to cut down on number of parallel threads over time?
I am running calculations in many passes that take days to complete (each pass takes ~1 hour). The tasks are pure calculations of data in memory (read from disk). I'm using Parallel.For and Parallel.ForEach several places, both for main task and inside the task. Everything is repeated in many passes. The class instances are disposed (memory profiler shows no problems over time) properly for every pass and a new instance is created. It is repeating 100% same task in every pass with the exception of some numbers in the math being changed (equal number of iterations every time, same dataset).
The computer has six cores, and the app starts out by using all of them. After some time it uses 5, then 4, then 3, then 2. Looking at Parallel stacks (Debug->Window->Parallel stacks) it confirms that only that many are running.
How come .NET isn't maxing out number of threads on every pass? Does it regulate threads based on CPU usage?
Tips on how to debug? Can I force number of threads to be used?
.WithDegreeOfParallelism(value)or explicitly create the threads yourself. – Marc Aug 11 '11 at 14:44