简体   繁体   中英

MassTransit creates queues on azure service bus

I developed a simple publish/subscribe example on a MassTransit and azure service bus as a message broker. The thing that I don't understand is that every time I start my solution MassTransit creates a queue per each service instance that connects to the bus :

在此输入图像描述

I don't know what is the purpose of this. The queues are getting disposed after I stop services. MassTransit documentation does not give me an explanation for this. Maybe someone here knows ?

That queue is for the bus endpoint, which is created for every bus instance. It should automatically delete a few minutes after the bus instance is stopped.

It is used as a source for publishing, as well as a response queue for requests sent via the bus.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM