to MSMQ or not to MSMQ? (or SQL Table as the Queue)

后端 未结 2 501
闹比i
闹比i 2021-02-04 10:59

I\'ve got a distributed system where there will be 1 SQL Server, 1-n processing servers, and 1-n data suppliers (hardware devices across the network). The data being supplied w

相关标签:
2条回答
  • 2021-02-04 11:22

    Out of the two options, MSMQ is actually the more simplistic. If you need the ability to re-prioritize work, or have processing agents only pick certain types of queued jobs, then you cant use MSMQ. If you dont need any of those bells and whistles, then MSMQ is cake to use with .NET.

    0 讨论(0)
  • 2021-02-04 11:30

    I would use MSMQ, it doesnt add that much complexity, and it is so easy to backup the messages, so processing can continue even after a system restart. You could use something like SSB.

    0 讨论(0)
提交回复
热议问题