Throttling MSMQ messages / prioritising messages - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T16:39:22Z http://stackoverflow.com/feeds/question/1043151 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1043151/throttling-msmq-messages-prioritising-messages 0 Throttling MSMQ messages / prioritising messages James Crowley 2009-06-25T10:31:11Z 2009-06-25T10:48:54Z <p>I'm not sure how best to describe this, or the best title, so bear with me!</p> <p>I'm using MSMQ to queue up a large number of commands that will fire off HTTP requests to various websites and APIs. In order to avoid hammering these services (and to stay within certain pre-defined request limits) I need to ensure tasks hitting the same domain are executed only after a minimum time has elapsed from the last request.</p> <p>Previously I was using a database to queue the tasks, and so could perform a query to achieve this, but we rapidly outgrew that solution with the number of tasks (way too many deadlocks on the table). </p> <p>Does anyone have any suggestions as to what approach we could take? I've considered just keeping taking items off the queue until you find one that you can execute - but I'm conscious there's nothing to stop the ordering on the queue meaning we could take off thousands for the same domain before finding one on a different domain.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1043151/throttling-msmq-messages-prioritising-messages/1043244#1043244 1 Answer by Remus Rusanu for Throttling MSMQ messages / prioritising messages Remus Rusanu 2009-06-25T10:48:54Z 2009-06-25T10:48:54Z <p>You 'outgrew' relational database and replace it with MSMQ? This is like 'promoting' from college to kindergarten! 4GB size limitation, no high availability solution, questionable recoverability, no querying of the message queue, you are already running into the very limitations than everyone is claiming when moving <em>away from</em> MSMQ to a relational database based queuing...</p> <p>I highly recommend you go back to the table based queuing. There are ways to avoid deadlocks in table based queuing, specially with the advent of OUTPUT clauses for DELETE (which is the key to write a fast deadlock free dequeue operation from a table based queue).</p> <p>Or you can use an off-the-shelf in database queuing solution like <a href="http://msdn.microsoft.com/en-us/library/ms166043%28SQL.90%29.aspx" rel="nofollow">Service Broker</a>. Actually SSB would offer a free lunch with many of its features, like built-in throttling (<a href="http://msdn.microsoft.com/en-us/library/ms171601.aspx" rel="nofollow">MAX_QUEUE_READERS</a>), enable/disable processing on a schedule (by enabling/disabling activation), <a href="http://msdn.microsoft.com/en-us/library/ms187804%28SQL.90%29.aspx" rel="nofollow">built-in timers</a> for retry, high-availability based on database mirroring or on clustering, or <a href="http://msdn.microsoft.com/en-us/library/bb934439.aspx" rel="nofollow">built-in priority handling</a>.</p>