vote up 0 vote down star
1

Hey Stackoverflow,

I've been asked by my team leader to investigate MSMQ as an option for the new version of our product. We use SQL Service Broker in our current version. I've done my fair share of experimentation and Googling to find which product is better for my needs, but I thought I'd ask the best site I know for programming answers.

Some details:

  • Our client is .NET 1.1 and 2.0 code; this is where the message will be sent from.
  • The target in a SQL Server 2005 instance. All messages end up being database updates or inserts.
  • We will send several updates that must be treated as a transaction.
  • We have to have perfect message recoverability; no messages can be lost.
  • We have to be asynchronous and able to accept messages even when the target SQL server is down.
  • Developing our own queuing solution isn't an option; we're a small team.

Things I've discovered so far:

  • Both MSMQ and SQL Service Broker can do the job.
  • It appears that service broker is faster for transactional messages.
  • Service Broker requires a SQL server running somewhere, whereas MSMQ needs any configured Windows machine running somewhere.
  • MSMQ appears to be better/faster/easier to set up/run in clusters.

Am I missing something? Is there a clear winner here? Any thoughts, experiences, or links would be valued. Thank you!

EDIT: We ended up sticking with service broker because we have a custom DB framework used in some of our client code (we handle transactions better). That code captured SQL for transactions, but not . The client code was also all version 1.1 of .NET, so we'd have to upgrade all the client code. Thanks for your help!

flag

3 Answers

vote up 0 vote down

Based upon your discoveries I'm sure you're leaning towards MSMQ, which would be the direction that I would choose.

link|flag
Actually, I'm leaning towards service broker. But I didn't want to bias the responses :) – Ed Schwehm Oct 27 '08 at 16:38
vote up 1 vote down

I've used MSMQ before and the only item I'd add to your list is a prerequisite check for versioning. I ran into an issue where one site had Win 2000 Server and therefore MSMQ v.2, versus Win 2003 Server and MSMQ v3. All my .NET code targeted v.3 and they aren't compatible... or at least not easily so.

Just a consideration if you go the MSMQ route.

link|flag
vote up 1 vote down

The message size limitation in MSMQ has halted my digging in that direction. I am learning Service Broker for the project.

link|flag

Your Answer

Get an OpenID
or

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