Load Balance WCF and Share a Remote MSMQ for High Throughput

Posted by BarDev on Stack Overflow See other posts from Stack Overflow or by BarDev
Published on 2010-03-31T17:50:01Z Indexed on 2010/03/31 17:53 UTC
Read the original article Hit count: 546

Filed under:
|
|

After a ton of reading in books and on the web, I have noticed hints of information that WCF and MSMQ can be used in achieving high throughput. The information I have seen mentions using multiple WCF services in a farm that reads from a single MSMQ queue. The problem is that I have found paragraphs here and there that mentions that high throughput can be done, but I cannot seem to find a document of how to implement it. The following is an excerpt from a MSDN article.

The following paragraph is from Best Practices for Queued Communication http://msdn.microsoft.com/en-us/library/ms731093.aspx To achieve higher throughput and availability, use a farm of WCF services that read from the queue. This requires that all of these services expose the same contract on the same endpoint. The farm approach works best for applications that have high production rates of messages because it enables a number of services to all read from the same queue.

This is what I'm trying to solve. I have an intranet application where a client sends a request to a WCF service. But I want the ability to load balance the WCF services on multiple servers in a farm. I also want these WCF services in the farm to do transactional reads from a remote MSMQ when an item is available in the Queue. If this is possible, an issue I have is that I do not understand the activation process of WCF to retrieve messages from a remote queue.

If this is possible, does anyone know of any articles or Webcasts that would explain it in detail?

BarDev

© Stack Overflow or respective owner

Related posts about wcf

Related posts about msmq