Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you have multiple input msmq queues to nServiceBus host?

Tags:

nservicebus

Is there any way to configure an nServiceBus endpoint to receive messages from more than one queue?

I am looking into implementing an nServiceBus Saga which takes messages from multiple queues (one per message type). The point of which is to be able to monitor traffic for each message type.

Thanks

like image 344
user483971 Avatar asked Jan 29 '26 10:01

user483971


1 Answers

Not without a lot of weird hacks.

The better approach would be to deploy your saga to multiple endpoints, each one responsible for processing the messages for the queue it sits on, but cooperating through the shared saga data.

like image 54
David Boike Avatar answered Feb 02 '26 12:02

David Boike