I will start this off with a basic explanation of how I understand a couple things to work and then conclude this all with a tldr; if people simply wish to reach the actual question I'm having here. And please, correct me if my understanding of anything here is wrong.
TPL stands for the Task Parallel Library, which is .NET 4.0's answer to trying to further simplify threading for ease of developer use. If you're unfamiliar with it, (on a very base level) you start a new Task object and pass it a delegate which is then run on a background thread taken from a thread pool (by using the thread pool instead of truly making a new thread, time and resources are saved by using these existing threads instead of creating and disposing of new threads).
From what I understand, the Parallel.ForEach command in C# will spawn a new thread (likely from a thread pool) for each delegate it is supposed to do, with the possible exception of automatically doing an inline of one or even possibly more of the iterations if the compiler decides they will occur quick enough for that to be more efficient.
Most relevant background information as to my goal:
I am attempting to make a quick program that starts off a Task to run concurrently with the rest of the program. In this Task, a Parallel.ForEach is run for 3 'iterations.' In total, we expect the program to now be running 5 total threads (at most): 1 for the main thread, 1 for the actual Task, and up to 3 for the Parallel.ForEach. Each Thread has its own goals to accomplish (although the Parallel.ForEach all have the same goal with a different value to its related itemNumber to calculate on. When the main thread finishes all its goals, it uses a Task.Wait() to wait on the finishing task, which waits on the Parallel.ForEach to finish as well. Then the values are used and verified.
tldr; Actual question:
When the aforementioned idea is run, the Parallel.ForEach appears to be initializing twice as many SynchronizationContexts (a TPL object which is essentially an other thread) as I would expect and running all of them, however only waiting on the expected amount of them. Because the Parallel.ForEach().Wait() command finishes at the expected quantity of threads running, the Task then also finishes as it thinks everything is done. Then the main program picks up that the Task has finished and as it verifies that there are currently no more background threads running, occasionally the remaining Parrallel.ForEach() have yet to finish and therefore errors are thrown.
The quantity of threads has been verified to match what I stated by printing to the debug window upon each SynchronizationContext's post call (the Async method kicker). Each thread is also referenced by a main thread object that otherwise plans on being disposed of upon finishing the Task, but since references are still had due to unfinished threads that weren't truly expected to be created, the disposal can't occur properly.
Thread testThread = Thread.CurrentThread;
Task backgroundTask = taskFactory.StartNew(() =>
{
Thread rootTaskThread = Thread.CurrentThread;
Assert.AreNotEqual(testThread, rootTaskThread, "First task should not inline");
Thread.Sleep(TimeSpan.FromSeconds(2));
Parallel.ForEach(new[] { 1, 2, 3, 4 },
new ParallelOptions { TaskScheduler = taskFactory.Scheduler }, (int item) => {
Thread.Sleep(TimeSpan.FromSeconds(1));
});
});
In the above example, the main thread, the backgroundTask Task, and 8 Parallel.ForEach threads end up existing, the last 9 of which are created on SynchronizationContexts.
The only method overridden in the SynchronizationContext for my custom is post and is as follows:
public override void Post(SendOrPostCallback d, object state){
Request requestOrNull = Request.ExistsForCurrentThread() ? Request.GetForCurrentThread() as Request : null;
Request.IAsyncContextData requestData = null;
if (requestOrNull != null){
requestData = requestOrNull.CaptureDataForNewThreadAndIncrementReferenceCount();
}
Debug.WriteLine("Task started - request data " + (requestData == null ? "DOES NOT EXIST" : "EXISTS"));
base.Post((object internalState) => {
// Capture the spawned thread state and restore the originating thread state
try{
if (requestData != null){
Request.AttachToAsynchronousContext(requestData);
}
d(state);
}
finally{
// Restore original spawned thread state
if (requestData != null){
// Disposes the request if this is the last reference to it
Request.DetachFromAsynchronousContext(requestData);
}
Debug.WriteLine("Task completed - request data " + (requestData == null ? "DOES NOT EXIST" : "EXISTS"));
}
}, state);
}
TaskScheduler that I believe is doing only the basic stuff required of it:
private readonly RequestSynchronizationContext context;
private readonly ConcurrentQueue<Task> tasks = new ConcurrentQueue<Task>();
public RequestTaskScheduler(RequestSynchronizationContext synchronizationContext)
{
this.context = synchronizationContext;
}
protected override void QueueTask(Task task){
this.tasks.Enqueue(task);
this.context.Post((object state) => {
Task nextTask;
if (this.tasks.TryDequeue(out nextTask))
this.TryExecuteTask(nextTask);
}, null);
}
protected override bool TryExecuteTaskInline(Task task, bool taskWasPreviouslyQueued){
if (SynchronizationContext.Current == this.context)
return this.TryExecuteTask(task);
else
return false;
}
protected override IEnumerable<Task> GetScheduledTasks(){
return this.tasks.ToArray();
}
TaskFactory:
public RequestTaskFactory(RequestTaskScheduler taskScheduler)
: base(taskScheduler)
{ }
Any ideas on why this may be occurring?
SynchronizationContext(I assume you're using a custom one). Because I don't see the behavior you're describing. Also, I really don't understand why usingPost()more than you expected would cause any problems for you? Does yourSynchronizationContexthave some special behavior that depends on this? – svick Aug 8 '12 at 16:54Assert.AreNotEqualsuggests to me you're writing some sort of unit test. But, theAssert.AreNotEqualis really validating the TPL, not your code--so, I don't see the point of verifying third-party code. – Peter Ritchie Aug 10 '12 at 18:47