Is there a better way to wait for queued threads? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T15:13:42Z http://stackoverflow.com/feeds/question/1045980 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1045980/is-there-a-better-way-to-wait-for-queued-threads 15 Is there a better way to wait for queued threads? Zanoni 2009-06-25T20:12:20Z 2009-09-02T13:30:31Z <p>Is there a better way to wait for queued threads before execute another process?</p> <p>Currently I'm doing:</p> <pre><code>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 &gt; 0) { Monitor.Wait(this.workerLocker); } } // Do anything else Console.WriteLine("END"); </code></pre> <p><hr /></p> <pre><code>// Method DoSomething() definition public void DoSomething(object data) { // Do a slow process... . . . lock (this.workerLocker) { this.RunningWorkers--; Monitor.Pulse(this.workerLocker); } } </code></pre> http://stackoverflow.com/questions/1045980/is-there-a-better-way-to-wait-for-queued-threads/1046015#1046015 0 Answer by Kazar for Is there a better way to wait for queued threads? Kazar 2009-06-25T20:21:01Z 2009-06-25T20:21:01Z <p>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. </p> <p>A couple of things I can suggest that may improve performance:</p> <ul> <li><p>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).</p></li> <li><p>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.</p></li> </ul> <p>I'm sure you could implement a more customised method yourself, but I doubt it would be more efficient than using the ThreadPool.</p> <p>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.</p> http://stackoverflow.com/questions/1045980/is-there-a-better-way-to-wait-for-queued-threads/1046199#1046199 11 Answer by Steffen for Is there a better way to wait for queued threads? Steffen 2009-06-25T20:50:21Z 2009-07-11T18:06:09Z <p>You likely want to take a look at AutoResetEvent and ManualResetEvent.</p> <p>These are meant for exactly this situation (waiting for a ThreadPool thread to finish, prior to doing "something").</p> <p>You'd do something like this:</p> <pre><code>static void Main(string[] args) { List&lt;ManualResetEvent&gt; resetEvents = new List&lt;ManualResetEvent&gt;(); 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(); } </code></pre> <p>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 :-)</p> http://stackoverflow.com/questions/1045980/is-there-a-better-way-to-wait-for-queued-threads/1046333#1046333 -2 Answer by Stacy Murray for Is there a better way to wait for queued threads? Stacy Murray 2009-06-25T21:23:41Z 2009-06-25T21:23:41Z <p>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.</p> <p>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). </p> <p>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.</p> <p>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.</p> <p>There is a learning curve, not that bad though, and well worth it if you need reliable, flexible processing.</p> <p>See my other post <a href="http://stackoverflow.com/questions/1015945/how-can-i-do-time-based-scheduled-events-in-net/1016465#1016465">here</a> for links to resources to help you evaluate. We use SSB to kickoff phone calls.</p> <p>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.</p> http://stackoverflow.com/questions/1045980/is-there-a-better-way-to-wait-for-queued-threads/1058967#1058967 3 Answer by Tobias Hertkorn for Is there a better way to wait for queued threads? Tobias Hertkorn 2009-06-29T15:36:34Z 2009-06-29T15:36:34Z <p>I really like the <a href="http://msdn.microsoft.com/en-us/library/ms228963.aspx" rel="nofollow">Begin- End- Async Pattern</a> when I have to wait for the tasks to finish.</p> <p>I would advice you to wrap the BeginEnd in a worker class:</p> <pre><code>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); } } </code></pre> <p>To do your starting and working use this code snippet:</p> <pre><code>List&lt;StringWorker&gt; workers = new List&lt;StringWorker&gt;(); 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"); </code></pre> <p>And that's it.</p> <p>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.</p> <pre><code>public class StringWorker { private string m_someString; private IAsyncResult m_result; private Func&lt;string&gt; 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); } } </code></pre> http://stackoverflow.com/questions/1045980/is-there-a-better-way-to-wait-for-queued-threads/1063222#1063222 8 Answer by Marc Gravell for Is there a better way to wait for queued threads? Marc Gravell 2009-06-30T11:42:17Z 2009-06-30T11:42:17Z <p>How about a <code>Fork</code> and <code>Join</code> that uses just <code>Monitor</code> ;-p</p> <pre><code>Forker p = new Forker(); foreach (var obj in collection) { var tmp = obj; p.Fork(delegate { DoSomeWork(tmp); }); } p.Join(); </code></pre> <p>Full code shown on this <a href="http://stackoverflow.com/questions/540078#540380">earlier answer</a>.</p> <p>Or for a producer/consumer queue of capped size (thread-safe etc), <a href="http://stackoverflow.com/questions/530211#530228">here</a>.</p> http://stackoverflow.com/questions/1045980/is-there-a-better-way-to-wait-for-queued-threads/1074770#1074770 1 Answer by modosansreves for Is there a better way to wait for queued threads? modosansreves 2009-07-02T14:37:23Z 2009-07-02T14:37:23Z <p>Yes, there is.</p> <h2>Suggested approach</h2> <p>1) a counter and a wait handle</p> <pre><code>int ActiveCount = 1; // 1 (!) is important EventWaitHandle ewhAllDone = new EventWaitHandle(false, ResetMode.Manual); </code></pre> <p>2) adding loop</p> <pre><code>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(); </code></pre> <p>3) <code>DoSomething</code> should look like</p> <pre><code>{ try { // some long executing code } finally { // .... PostActionCheck(); } } </code></pre> <p>4) where <code>PostActionCheck</code> is</p> <pre><code>void PostActionCheck() { if (Interlocked.Decrement(ref ActiveCount) == 0) ewhAllDone.Set(); } </code></pre> <h2>Idea</h2> <p>ActiveCount is initialized with <code>1</code>, and then get incremented <code>n</code> times.</p> <p><code>PostActionCheck</code> is called <code>n + 1</code> times. The last one will trigger the event.</p> <p>The benefit of this solution is that is uses a single kernel object (which is an event), and <code>2 * n + 1</code> calls of lightweight API's. (Can there be less ?)</p> <h2>P.S.</h2> <p>I wrote the code here, I might have misspelled some class names. </p> http://stackoverflow.com/questions/1045980/is-there-a-better-way-to-wait-for-queued-threads/1077339#1077339 3 Answer by zvolkov for Is there a better way to wait for queued threads? zvolkov 2009-07-03T00:25:23Z 2009-07-10T16:06:00Z <p>In addition to Barrier, pointed out by Henk Holterman (BTW his is a <em>very</em> 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 <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=348F73FD-593D-4B3C-B055-694C50D2B0F3&amp;displaylang=en" rel="nofollow">an extra DLL from Microsoft</a>). I blogged a post <a href="http://zvolkov.com/blog/post/2009/07/10/Better-ways-to-wait-for-queued-threads-to-complete.aspx" rel="nofollow">that lists them all</a>, but my favorite is definitely Parallel.ForEach:</p> <pre><code>Parallel.ForEach&lt;string&gt;(arrayStrings, someString =&gt; { DoSomething(someString); }); </code></pre> <p>Behind the scenes, Parallel.ForEach queues to the new and improved thread pool and waits until all threads are done.</p> http://stackoverflow.com/questions/1045980/is-there-a-better-way-to-wait-for-queued-threads/1077366#1077366 0 Answer by kevin.stafford for Is there a better way to wait for queued threads? kevin.stafford 2009-07-03T00:35:51Z 2009-07-03T00:35:51Z <p>Use Spring Threading. It has Barrier implementations built in.</p> <p><a href="http://www.springsource.org/extensions/se-threading-net" rel="nofollow">http://www.springsource.org/extensions/se-threading-net</a></p>