What is the difference between SQS vs RabbitMQ vs Memphis?
Avatar Idan Asulin
Apr 16, 2023
12 13 14
What is the difference between RabbitMQ vs ZeroMQ vs Memphis?
Avatar Idan Asulin
Apr 16, 2023
10 11 12
What is the difference between Kafka vs ZeroMQ vs Memphis?
Avatar Yaniv Ben Hemo
Apr 16, 2023
2 3 4
What is the difference between Azure Event Hub vs Kafka vs Memphis?
Avatar Idan Asulin
Apr 16, 2023
5 6 7
How does ActiveMQ vs RabbitMQ vs Kafka vs Memphis work?
Avatar Idan Asulin
Apr 16, 2023
7 8 9
What is ActiveMQ vs IBM MQ vs Memphis?
Avatar Yaniv Ben Hemo
Apr 16, 2023
3 4 5
What is IBM MQ?
Avatar Yaniv Ben Hemo
Apr 16, 2023
4 5 6
What is an mq server?
Avatar Idan Asulin
Apr 16, 2023
3 4 5
How does mq messaging take place?
Avatar Idan Asulin
Apr 16, 2023
2 3 4
What is an mq server?
3 4 5

An mq server is the part of a message queue that handles the actual messaging process. It coordinates messages to their destinations.
It is always listening for connections to producers and consumers.
It is always listening to receive and send out messages. 

A message queue can have multiple parts.
It can be comprised of a database, a UI, a CLI, a server, among other tools.
The mq server provides the UI with data to render.
The UI and CLI can make changes to the server.
The server coordinates the database.
For example, the server moves messages to the dead letter queue when they’ve become poison messages. 

When you launch a message queue, it is actually its mq server that you’ve started.
Likewise, in case of an instance restart of a given message broker, it is the mq server that got restarted. 

The mq server comprises components that take part in messaging:

  • A connection component for connecting to producers and consumers.
  • Monitoring component for keeping track of connections and messages.
  • Routing component for transmitting messages to the appropriate destinations.
  • Persistence component for preventing message loss.
  • Authentication component for ensuring that the right application is accessing the broker.

These are logical units that one can find within the codebase of a message broker.
You can find less or more of them depending on the message broker being studied.
The sure thing is that the mq server is the abstraction that governs the activities of a message broker.