Just need an opinion. Is it a good practice to use same rabbit connection to subscribe the message and send commands internally as well.
Scenario is :
We have a subscriber application that has handlers. But some processes are long running to make it more resilient we want to send internal commands.
Question :- Can we use the same connection to send commands to rabbitmq.
Note: We are using RabbitMQ connection as singleton. Around 340K message we will receives in a day and have only 2 instances of this application.
Thanks in advance.