Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Redis Pub/Sub vs Rabbit MQ

My team wants to move to microservices architecture. Currently we are using Redis Pub/Sub as message broker for some legacy parts of our system. My colleagues think that it is naturally to continue use redis as service bus as they don't want spend their time on studying new product. But in my opinion RabbitMQ (especially with MassTransit) is a better approach for microservices. Could you please compare Redis Pub/Sub with Rabbit MQ and give me some arguments for Rabbit?

like image 351
Александр Сысоев Avatar asked Oct 01 '18 13:10

Александр Сысоев


People also ask

Is RabbitMQ better than Redis?

RabbitMQ handles large messages way better than Redis. It guarantees delivery of messages and thus preferable when you can't afford messages loss. It doesn't guarantee the delivery of each message.

Is RabbitMQ a pub sub?

Conceptually, RabbitMQ is both: point-to-point as well as pub-sub. You can register your listener application to the topic of an RabbitMQ exchange and receive all messages published to that Topic. So that is clearly 'pub-sub'.

Is Redis Pub/Sub reliable?

Its not pub sub, its more reliable since your consumer can be offline and the messages will queue up instead of being lost.

Is Redis a good message broker?

Redis Pub/Sub is an extremely lightweight messaging protocol designed for broadcasting live notifications within a system. It's ideal for propagating short-lived messages when low latency and huge throughput are critical. Redis Lists and Redis Sorted Sets are the basis for implementing message queues.


2 Answers

Redis is a fast in-memory key-value store with optional persistence. The pub/sub feature of Redis is a marginal case for Redis as a product.

RabbitMQ is the message broker that does nothing else. It is optimized for reliable delivery of messages, both in command style (send to an endpoint exchange/queue) and publish-subscribe. RabbitMQ also includes the management plugin that delivers a helpful API to monitor the broker status, check the queues and so on.

Dealing with Redis pub/sub on a low level of Redis client can be a very painful experience. You could use a library like ServiceStack that has a higher level abstraction to make it more manageable.

However, MassTransit adds a lot of value compared to raw messaging over RMQ. As soon as you start doing stuff for real, no matter what transport you decide to use, you will hit typical issues that are associated with messaging like handling replies, scheduling, long-running processes, re-delivery, dead-letter queues, and poison queues. MassTransit does it all for you. Neither Redis or RMQ client would deliver any of those. If your team wants to spend time dealing with those concerns in their own code - that's more like reinventing the wheel. Using the argument of "not willing to learn a new product" in this context sounds a bit weird, since, instead of delivering value for the product, developers want to spend their time dealing with infrastructure concerns.

like image 131
Alexey Zimarev Avatar answered Nov 15 '22 13:11

Alexey Zimarev


RabbitMQ is far more stable and robust than Redis for passing messages.

RabbitMQ is able to hold and store a message if there is no consumer for it (e.g. your listener crashed , etc).

RabbitMQ has different methods for communication: Pub/Sub , Queue. That you can use for load balancing , etc

Redis is convenient for simple cases. If you can afford losing a message and you don't need queues then I think Redis is also a good option. If you however can not afford losing a message then Redis is not a good option.

like image 25
BlackBrain Avatar answered Nov 15 '22 14:11

BlackBrain