RabbitMQ

Direct service-to-service communication works until one service goes down and takes the caller with it. RabbitMQ puts a queue between producers and consumers: the sender publishes a message and moves on, regardless of whether the consumer is ready. TL;DR: Set up RabbitMQ and implement a producer-consumer pattern: publish messages to a queue and process them … Read more