We're using NServiceBus on top of MSMQ. Now we are making a move to use RabbitMQ - we would like a centralized queue, and found that RabbitMQ best answer our needs.
Converting our project was easy, and in RabbitMQ we've noticed that it created an exchange (and queue) for each endpoint and message type in that endpoint.
I've read the Changing routing topology section in http://docs.particular.net/nservicebus/rabbitmq/configuration-api and it written there
For less complex scenarios you can use the DirectRoutingTopology
What the documentation failed to explain are the parameters that considure a solutions as complex
.
I've searched and could not find somewhere that explains what is considered complex, and when should a DirectRoutingTopology
be used over the default option where multiple exchanges are used. Or what is the difference / performance considerations between each approach.
Does anyone know?