Use this tag for questions about AMQP (Advanced Message Queuing Protocol) that are independent of the framework.
Questions tagged [amqp]
7 questions
3
votes
1 answer
Data validation between microservices
Consider a scenario (in .Net Core world), where a microservice A collects data from external sources and sends this data asynchronously (RabbitMQ) to microservice B (the reporting system) where this data is finally stored and analyzed etc.
As A has…

Andreas H.
- 141
- 4
3
votes
2 answers
Best approach for inter-process task queues
I have an application made up of multiple processes/workers/services which need to send messages to each other that represent units of "enqueued tasks" to be done. I am trying to find the best pattern to use for the type of communication these…

Jugdizh
- 139
- 1
2
votes
1 answer
AMQP messaging: How to generate documentation for consumers?
My application publishes various messages (e.g., telemetry, changed-events, ...) to a RabbitMQ message-broker. The users have no access to the source-code and therefore, will need a separate documentation with all available exchanges, messages and…

SoftwareArchitect123
- 51
- 6
1
vote
1 answer
Rabbitmq create queues dynamically based on number of users
I have a scenario where I have to route a list of messages that I get to respective users.
For suppose if I have
messages = [
{ text: 'hi', user_id: 1 },
{ text: 'hi', user_id: 2 },
{ text: 'hi', user_id: 3 },
{ text: 'hi', user_id: 4 },
{…

Sm Srikanth
- 119
- 3
1
vote
0 answers
How to Upgrade MQ with incremental approach with 50 micro services
I have around 50 microservices which communicate with each other using Apache MQ implementation.
I want to know if I can avoid big bang approach when I need to upgrade the MQ version.
Current option that I can think of is put a switch in each micro…

TonyStark
- 19
- 4
0
votes
2 answers
Message broker design pattern best practice
I'm designing the architecture of a platform to introduce a message broker in an existing data collection web application.
This web application is currently used to upload data from excel files that are then validated, processed and inserted into a…

Giox
- 109
- 1
-1
votes
1 answer
Microservices architecture multi level event buses
Pretty much all documentation on microservices I came across explain just one tiny part of some complex system. I am trying to understand big picture. So my question is: Has anyone expirienced in practice multi level AMQP Event Buses across solution…

SlobodanT
- 135
- 3