I have lots of "jobs" in my system that are long-running but not CPU bound. I would like to set up a Worker role to handle these, but they are scalable enough that one Worker role could easily have 10-20 threads all processing a "job" at the same time.
There are questions here suggesting use of the TPL, which I do have some limited experience with. What I do not understand, however, is how to manage the threads so there is a max number of them, and how to dispatch them when one frees up.
Slightly complicating this is that I would like to use Ninject for creating the services each "job" needs.
Here is how I image it working in my head:
while (true)
{
// Don't go unless we have a free slot (how do I implement this?!)
if (FreeThreadExists)
{
// Get the next message
CloudQueueMessage ThisMessage = Queue.GetMessage(TimeSpan.FromMinutes(3));
// Get the new job and inject services
Job MyJob = Kernel.Get<Job>();
// Start this job
// Will I need to keep ahold of this Task?
// And how do I know when it's done so that FreeThreadExists changes?
Task.Factory.StartNew(() => MyJob.Run(ThisMessage));
}
else
{
// Sleep to prevent choking
Thread.Sleep(500);
}
}
Then in that thread delete the message on completion. Basically I'm trying to split off one Worker into 20 "instances" without losing too much Azure functionality (specifically I'd like the queue message timeout/retry functionality).
I am rather inexperienced in .NET threading, what is the best way to go about this?
Edit: Wow, I totally forgot to add an important point: this needs to scale across multiple Workers. So, 10 Worker roles, each with 10 threads, messages get queued by the UI front end, then dequeued and run by the first Worker with a free thread.