Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL Service Broker Success?

I am contemplating converting our internal application from MSMQ and WCF to SSB. We would like a more feature rich system with regards to our queuing.

However, I am not seeing a lot of implementations or general information if SSB is in use with .Net. The SSB blog is not very active and I see few posts in general on implementation successes or advice.

Is SSB used much? Are there better alternatives for queuing and .Net?

like image 545
Jiyosub Avatar asked Dec 09 '22 17:12

Jiyosub


1 Answers

We're using SSB for async processing of many different types of records, and it's a total breeze. Getting up to speed was a bit involved, but it was worth it. Using activation procedures saved us tons of time. Just imagine that you can dyanmically say 'i want this async process to have 10 threads to process items in the queue, but i want this other async process to only have 2 threads to process items in the queue'. That's all just a parameter on the activation stored procedure. I'd recommend look at Adam Mechanic's SSB tutorials on simple-talk.com.

like image 50
DevCodex Avatar answered Dec 28 '22 02:12

DevCodex