up vote 43 down vote favorite
20
share [g+] share [fb]

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

80% accept rate
feedback

2 Answers

up vote 36 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.

Hope that helps.

Disclaimer: I am the author of NServiceBus.

link|improve this answer
Can you elaborate on "what kind of taste you prefer" means? What are some of the more noticeable differences between your nServiceBus and the other solutions (apart from being the oldest and most stable)? – jacko Oct 26 '09 at 10:35
19  
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
22  
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
4  
@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
8  
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
show 1 more comment
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
18  
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.