vote up 15 vote down star
5

Is there a better way to wait for queued threads before execute another process?

Currently I'm doing:

this.workerLocker = new object(); // Global variable
this.RunningWorkers = arrayStrings.Length; // Global variable

// Initiate process

foreach (string someString in arrayStrings)
{
     ThreadPool.QueueUserWorkItem(this.DoSomething, someString);
     Thread.Sleep(100);
}

// Waiting execution for all queued threads
lock (this.workerLocker)  // Global variable (object)
{
     while (this.RunningWorkers > 0)
     {
          Monitor.Wait(this.workerLocker);
     }
}

// Do anything else    
Console.WriteLine("END");


// Method DoSomething() definition
public void DoSomething(object data)
{
    // Do a slow process...
    .
    .
    .

    lock (this.workerLocker)
    {
        this.RunningWorkers--;
        Monitor.Pulse(this.workerLocker);
    }
}
flag

2  
There are lots of ways. I think you need to read a good threading guide- albahari.com/threading. A producer consumer queue might be useful in your scenario, so might a Wait and pulse, or WaitHandles. – – RichardOD Jun 25 at 20:46
1  
There is a race condition at this line: this.RunningWorkers--; Try using Interlocked.Decrement method for thread safe decrement. – SolutionYogi Jul 1 at 18:31
@SolutionYogi: RunningWorkers is protected by lock(this.workerLocker) – Henk Holterman Jul 2 at 16:57

8 Answers

vote up 11 vote down check

You likely want to take a look at AutoResetEvent and ManualResetEvent.

These are meant for exactly this situation (waiting for a ThreadPool thread to finish, prior to doing "something").

You'd do something like this:

static void Main(string[] args)
{
    List<ManualResetEvent> resetEvents = new List<ManualResetEvent>();
    foreach (var x in Enumerable.Range(1, WORKER_COUNT))
    {
    	ManualResetEvent resetEvent = new ManualResetEvent();
    	ThreadPool.QueueUserWorkItem(DoSomething, resetEvent);
        resetEvents.Add(resetEvent);
    }

    // wait for all ManualResetEvents
    WaitHandle.WaitAll(resetEvents.ToArray()); // You probably want to use an array instead of a List, a list was just easier for the example :-)
}

public static void DoSomething(object data)
{
    ManualResetEvent resetEvent = data as ManualResetEvent;

    // Do something

    resetEvent.Set();
}

Edit: Forgot to mention you can wait for a single thread, any thread and so forth as well. Also depending on your situation, AutoResetEvent can simplify things a bit, since it (as the name implies) can signal events automatically :-)

link|flag
5  
This won't work it you spin off more that 64 items at Windows only allows you to wait on up to 64 handles. – Sean Jun 29 at 12:40
Thanks Sean, I didn't know this (and its important for my current project) – Steve Jun 29 at 12:49
1  
You forgot to append resetEvent into resetEvents. – Blindy Jun 29 at 14:51
Blindy - not sure what you mean ? Sean - thanks, I didn't know that either, but yes it could be very important. Do you happen to know if it's only in 32 bit windows this is an issue ? – Steffen Jun 30 at 5:31
1  
I don't know why folks are not voting for Marc's 'Fork' class. It doesn't have the limitation of 64 handles like the above code and it's very clean. – SolutionYogi Jul 3 at 17:35
show 7 more comments
vote up 0 vote down

I'm not sure there is really, I've recently done something similar to scan each IP of a subnet for accepting a particular port.

A couple of things I can suggest that may improve performance:

  • Use the SetMaxThreads method of ThreadPool to tweak performance (i.e. balancing having lots of threads running at once, against the locking time on such a large number of threads).

  • Don't sleep when setting up all the work items, there is no real need (that I am immediately aware of. Do however sleep inside the DoSomething method, perhaps only for a millisecond, to allow other threads to jump in there if need be.

I'm sure you could implement a more customised method yourself, but I doubt it would be more efficient than using the ThreadPool.

P.S I'm not 100% clear on the reason for using monitor, since you are locking anyway? Note that the question is asked only because I haven't used the Monitor class previously, not because I'm actually doubting it's use.

link|flag
vote up -2 vote down

Yes, there is a much better way if you have access to SQL Server 2005/2008. You can use SQL Servce Broker(SSB) to kickoff running DoSomething(object data). And your timing issues disappear too.

You'll hit a stored procedure to persist your data and post a msg to SSB. If your data is already in the db, then that stored procedure will simply post a message like "run DoSomething" to a SSB message queue (similar to MSMQ).

Once the message hits that first queue, it will post it to another queue ready for pickup. That's when the magic kicks-in. Upon posting to the pickup queue, SSB notifies a windows service to run a console app (this is called External Activation (EA)). In that app, you'll have query that hits the db to pickup the message and the data. Pass the data to DoSomething(object data), which is also in the console app, and it runs for however long it takes to do the tasks. Then loops to pickup another message/data you might have stored.

You can control how many console apps you want running simultaneously for parallel processing. SSB handles all the timing and invokations for you. No lock required. No Sleep required and guesses at run timing. You can also can do timed pickups if you want processing done only at 2am, every 10 minutes, etc.

There is a learning curve, not that bad though, and well worth it if you need reliable, flexible processing.

See my other post here for links to resources to help you evaluate. We use SSB to kickoff phone calls.

BTW, if you are using a shared SQL Server, I found after lots of searching that CrystalTech lets you use SSB on their shared dbs.

link|flag
1  
Are you crazy dude? – Zanoni Jun 26 at 1:07
1  
Don't just cast dispersions. Back it up with some facts. SSB is a legitimate way to do what you need, even though it may not be what you WANT. No, I'm not crazy. – Stacy Murray Jun 26 at 6:50
Stacy, good suggestion for a distributed application, but way to complicated for a single Application. – Henk Holterman Jun 26 at 8:49
No, bad suggestion for a distributed app. SQL server should not be used to drive application logic. For one, its not designed for it. Your database is a backend store and that should be it. I'm rigid for the following reasons - 1. SQL server coomand are not strongly typed 2. Stored procedures are very hard to debug 3. You might be able to write this, but what about the poor maintenance programmer? I've worked on a distributed app like this and it was a nightmare. – Steve Jun 29 at 12:47
1  
+1 for creativity. -1 for using a hammer on a screw. :) – Erich Mirabal Jun 30 at 12:02
vote up 3 vote down

I really like the Begin- End- Async Pattern when I have to wait for the tasks to finish.

I would advice you to wrap the BeginEnd in a worker class:

public class StringWorker
{
    private string m_someString;
    private IAsyncResult m_result;

    private Action DoSomethingDelegate;

    public StringWorker(string someString)
    {
        DoSomethingDelegate = DoSomething;
    }

    private void DoSomething()
    {
        throw new NotImplementedException();
    }

    public IAsyncResult BeginDoSomething()
    {
        if (m_result != null) { throw new InvalidOperationException(); }
        m_result = DoSomethingDelegate.BeginInvoke(null, null);
        return m_result;
    }

    public void EndDoSomething()
    {
        DoSomethingDelegate.EndInvoke(m_result);
    }
}

To do your starting and working use this code snippet:

List<StringWorker> workers = new List<StringWorker>();

foreach (var someString in arrayStrings)
{
    StringWorker worker = new StringWorker(someString);
    worker.BeginDoSomething();
    workers.Add(worker);
}

foreach (var worker in workers)
{
    worker.EndDoSomething();
}

Console.WriteLine("END");

And that's it.

Sidenote: If you want to get a result back from the BeginEnd then change the "Action" to Func and change the EndDoSomething to return a type.

public class StringWorker
{
    private string m_someString;
    private IAsyncResult m_result;

    private Func<string> DoSomethingDelegate;

    public StringWorker(string someString)
    {
        DoSomethingDelegate = DoSomething;
    }

    private string DoSomething()
    {
        throw new NotImplementedException();
    }

    public IAsyncResult BeginDoSomething()
    {
        if (m_result != null) { throw new InvalidOperationException(); }
        m_result = DoSomethingDelegate.BeginInvoke(null, null);
        return m_result;
    }

    public string EndDoSomething()
    {
        return DoSomethingDelegate.EndInvoke(m_result);
    }
}
link|flag
vote up 8 vote down

How about a Fork and Join that uses just Monitor ;-p

Forker p = new Forker();
foreach (var obj in collection)
{
    var tmp = obj;
    p.Fork(delegate { DoSomeWork(tmp); });
}
p.Join();

Full code shown on this earlier answer.

Or for a producer/consumer queue of capped size (thread-safe etc), here.

link|flag
I really love this particular idea. I am in process of incorporating it in my mini threading library. Thanks! – SolutionYogi Jul 3 at 17:36
vote up 1 vote down

Yes, there is.

Suggested approach

1) a counter and a wait handle

int ActiveCount = 1; // 1 (!) is important
EventWaitHandle ewhAllDone = new EventWaitHandle(false, ResetMode.Manual);

2) adding loop

foreach (string someString in arrayStrings)
{
     Interlocked.Increment(ref ActiveCount);

     ThreadPool.QueueUserWorkItem(this.DoSomething, someString);
     // Thread.Sleep(100); // you really need this sleep ?
}

PostActionCheck();
ewhAllDone.Wait();

3) DoSomething should look like

{
    try
    {
        // some long executing code
    }
    finally
    {
        // ....
        PostActionCheck();
    }
}

4) where PostActionCheck is

void PostActionCheck()
{
    if (Interlocked.Decrement(ref ActiveCount) == 0)
        ewhAllDone.Set();
}

Idea

ActiveCount is initialized with 1, and then get incremented n times.

PostActionCheck is called n + 1 times. The last one will trigger the event.

The benefit of this solution is that is uses a single kernel object (which is an event), and 2 * n + 1 calls of lightweight API's. (Can there be less ?)

P.S.

I wrote the code here, I might have misspelled some class names.

link|flag
The good thing here is that you only need 1 EWH, but Monitor is still preferable. The overhead of a EWH offsets the small savings of interlocked easily. – Henk Holterman Jul 2 at 21:39
vote up 3 vote down

In addition to Barrier, pointed out by Henk Holterman (BTW his is a very bad usage of Barrier, see my comment to his answer), .NET 4.0 provides whole bunch of other options (to use them in .NET 3.5 you need to download an extra DLL from Microsoft). I blogged a post that lists them all, but my favorite is definitely Parallel.ForEach:

Parallel.ForEach<string>(arrayStrings, someString =>
{
    DoSomething(someString);
});

Behind the scenes, Parallel.ForEach queues to the new and improved thread pool and waits until all threads are done.

link|flag
vote up 0 vote down

Use Spring Threading. It has Barrier implementations built in.

http://www.springsource.org/extensions/se-threading-net

link|flag

Your Answer

Get an OpenID
or

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