Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any good alternatives to RabbitMQ for low-end setups?

Tags:

I've been using RabbitMQ in a few setups now, and I can't shake the feeling that there must be something that's more easily set up. Despite it's conveniences it's hard to justify MQ for a solution that only processes a couple of thousand messages a day, simply because maintaining RabbitMQ is so much work.

Does anyone know an AMQP implementation with a simple installation and maintenance process?

For those who don't know it, RabbitMQ is an AMQP implementation written in Erlang. It is supposed to be very stable, but that is only really the case if you know enough about Erlang to avoid its problems. Whether it's memory limits or changes in the hostname, there is always a need to get deeper into it.

like image 701
lyschoening Avatar asked Jul 31 '11 11:07

lyschoening


People also ask

What is difference between ActiveMQ and RabbitMQ?

ActiveMQ is used in enterprise projects to store multiple instances and supports clustering environments based on the JMS messaging specification. RabbitMQ is a message broker which is executed in low-level AMQP protocol and acts as an intermediator between two application in the communication process.

Is RabbitMQ lightweight?

RabbitMQ is lightweight and easy to deploy on premises and in the cloud. It supports multiple messaging protocols. RabbitMQ can be deployed in distributed and federated configurations to meet high-scale, high-availability requirements.

What does MQ stand for in RabbitMQ?

Last updated January 2022. RabbitMQ is a message-queueing software also known as a message broker or queue manager. Simply said; it is software where queues are defined, to which applications connect in order to transfer a message or messages. A message can include any kind of information.


1 Answers

http://www.zeromq.org/ might be what you are looking for. If you are on Windows you might use MSMQ

EDIT: I guess I missed the AMQP part of the question.

like image 57
Yavor Shahpasov Avatar answered Sep 28 '22 13:09

Yavor Shahpasov