Connect to existing RabbitMQ queue using MassTransit problem
I have pre-setup RabbitMQ configuration: Exchange-1, Queue-1 with binding using Routing Key “notifications.info”. I would like to connect to the existing Queue-1 using MassTransit.
Question About RabbitMQ Batch Publishing And Ordering Messages
I have a list of messages need to be sent to rabbitMq. I am using masstransit and i publish messages one by one like this;
Mass Transit Binding Exchange and type in consumer
I bind to an exchange with different routing keys for each type of message.
Multiples instances of a worker consuming a saga orchestator
Im working in an backend solution that has: an api, a worker with the masstransit and rabbit mq configuration and a rabbitmq instance.
C# .Net 8 AddMassTransit UsingRabbitMq with UseConsumeFilter
Got an error on adding UseConsumeFilter
Masstransit, RabbitMq and listening to exchange topic
We have another team that publish events using Masstransit & RabbitMQ.
They are publishing the event with full name Namespace1.Namespace2.EventHappened
MassTransit service bus not working when deployed to server where two environments both dev and demo are setup in same server
Basically, we are using MassTransit with RabbitMQ in out .Net core application for publishing and consuming messages. We maintain 2 environments – dev and demo in the same server.
For this, we have created 2 virtual hosts dev and demo in RabbitMQ and configured the dev vhost to be used in dev environment and demo vhost to be used in demo environment..
When we run the dev application, the service bus gets started and messages are correctly published and consumed. But in demo, the service bus is not started and the messages are not published or consumed. Need help to figure out a solution for this issue.