Just doing some quick spikes into possibly using a messaging system to process files that are in a nicely decoupled work flow system.

What are the pro's and cons that people have found of using each of the above frameworks? What are the advantages of using these versus a hand-rolled MSMQ system with the WCF bindings and/or non-MSMQ solutions??

link|improve this question

76% accept rate
feedback

3 Answers

up vote 37 down vote accepted

I'd recommend staying away from hand-rolled solutions as there is a bunch of somewhat difficult stuff that needs to be gotten just right - like how transactions are handled, how exceptions cause rollbacks, how to stop rolling back endlessly (poison messages), how to integrate with long-running workflows so that the state management boundaries line up, and more.

You will probably want some kind of durable/transactional messaging infrastructure, so not using MSMQ you'd be left with Service Broker on the Microsoft platform, or some other alternative like ActiveMQ. MSMQ has the benefit of already being installed on all Windows machines, as opposed to Service Broker which isn't.

In terms of choosing between NServiceBus, Mass Transit, and Rhino Service Bus - it can be characterized as what taste you prefer, though NServiceBus has been around the longest and is arguably the most stable.

In our 3.1 release, we're introducing NSB Studio - a set of Visual Studio integrated modeling tools that enable you to model your system at a higher level of abstraction and have much of the configuration and initialization of NServiceBus be done for you automatically. I'd say that this really tips the scales in favor of NServiceBus.

Hope that helps.

Disclaimer: I am the author of NServiceBus.

link|improve this answer
20  
Rhino Service Bus is very Castle centric. If you're not familiar/comfortable with Castle as a core part of your application architecture, you may have some difficulty with it. NServiceBus and Mass Transit or more container agnostic. NServiceBus comes with an "application server" that handles hosting your code as well as changing active infrastructure implementations (like in-memory, MSMQ, & DB) as you transition your system from dev to test to prod. It also comes with unit testing facilities for your message handling logic & long-running processes. I don't believe that MassTransit has these. – Udi Dahan Oct 28 '09 at 13:02
24  
It's probably worth noting that Udi is the AUTHOR of NServiceBus, and so his opinion may be a little biased here. :) Having said that, I completely agree, and would advocate the use of NServiceBus for the same reasons he has done. – skb Apr 24 '10 at 20:33
5  
@skb: agreed! Udi, you should really give some kind of disclaimer when answering nservicebus questions, particularly ones like this! – andy Nov 9 '10 at 23:21
10  
I'm still getting used to the fact that people are now discovering NServiceBus who do not know that I created it – Udi Dahan Nov 10 '10 at 10:38
1  
-1 for License. – Alex Burtsev Apr 11 at 8:21
show 4 more comments
feedback

NServiceBus is a commercial product since version 2.0 (which was the last version licensed under Apache License).

The current version 3.0 is not suitable for production use of you don't pay for enterprise license, here are some quotes from NServiceBus Express License:

You shall not:

(c) use the Software or its Derivative Works for Production Use on more than one machine;

(d) use the Software or its Derivative Works for Production Use on a machine with more than 4 CPU cores.

Who needs bus that you can use on ONE machine only?

NServiceBus Express Edition

This edition contains all NServiceBus functionality but, like Rails servers, is single threaded - capable of processing about 30 messages/s

Compared to 1000 messages/s for full version.

As you can see the only way to use NServiceBus for production is to buy Enterprise version.

MassTransit is licensed under Apache License.

You can freely use it in production business environment.

link|improve this answer
Actually we will be providing a new license with version 3.1 that will allow you to run it on multiple machines for free (although at lower levels of throughput). – Udi Dahan May 11 at 19:18
feedback

a potential con of anything MSMQ based is the restriction on maximum message size. IIRC it is approximately 4MB, which you might easily run into if you're dealing with large files and storing the file content within the message.

link|improve this answer
5  
Interestingly enough, most cloud-based queues don't even support payloads of 100KB, so this is something that will need to be taken into account by many apps in the future. – Udi Dahan Oct 23 '09 at 19:19
19  
In Enterprise Integration Patterns (Woolf,Hohpe), the Claim Check pattern specifically addresses this concern. A reference to the large payload is kept in the message only, keeping the message small. Large message sizes can wreak havoc on the throughput of a messaging system. – Chris Patterson Oct 26 '09 at 17:06
feedback

Your Answer

 
or
required, but never shown

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