I have been doing some research on the disruptor pattern for high performance reliable messaging systems, and as an avid user of NServiceBus I was wondering if this is something which could be implemented for it? Or perhaps there is already an implementation of this… I was just wondering about others thoughts on this?
I have been doing some research on the disruptor pattern for high performance reliable
Share
If you’re referring to the LMAX architecture and Martin Thompson of Mechanical Sympathy then the answer is no, at least in the near future. The reason is that the disruptor architecture is different from that of NServiceBus at fundamental levels. To quote the Disruptor GitHub page:
So it may be possible to use some of the abstractions present in NServiceBus, such as IMessageHandler, and use the ring buffer as an underlying transport, but it is also likely that some of the abstractions would need to be altered.
Overall though, I think this is a very good question to address.