RabbitMQ is a queuing system that is mostly used for building event driven systems. In this Gist, I will share some snippets of code and idea on how to go about MQ assuming you are just getting started.
- Understanding RabbitMQ
- Downloading and Installing RabbitMQ
- Understanding our project
- User Service
- Notification Service
- Handling issues
- Concluding Statement
RabbitMQ or MQ as I will be rererring to it is communication pattern that enables application to communicate with a central location. It provides a middle system that allows decoupled systems to hook into.
MQ finds great use in Microservice architecture or if you plan or building an Event Driven System. When you launch MQ server, every producer and consumer can connect to it. We connect to MQ using a client driver.
Some basic concept to understand are @
On downloading and installation, my focus will be on Windows as that is the operating system I am currently using. This gist will be updated to reflect how to go about it on other OS once I lay my hands on them.
Before downloading MQ on windows, you should ensure your system meets or has the following :
-
Erlang To download an Erlang OTP , use Erlang OPT
-
Download RabbitMQ
-
Install MQ as an administrator
-
After installing the application, you will have access to the RabbitMQ server. Check your installed Apps and launch the RabbitMQ server.
The project we will work on is a user registration system.
When a user joins our platform, we want to send an email to the users account.
We will have two services :
- Users
- Notification
To implement this , we will use NodeJS.
Create a directory for the project :
mkdir bigjara-rabbit
cd bigjara-rabbit
npm init
npm i express amqplib @sendgrid/mail
const amqplib = require("amqplib");
/**
-
@description sends a message to RabbitMQ
-
@param {String} queue a queue to connect to or create if it does not exist
-
@param {Any} message to send to a queue. It can be any type */ const sendMessageToQueue = async (queue, message) => { try { const msgTypes = ["number", "string", "boolean"];
const connect = await amqplib.connect(process.env.AMQP_URL); const channel = await connect.createChannel(); await channel.assertQueue(queue, { durable: false, }); const msg = msgTypes.includes(message) ? message : JSON.stringify(message); channel.sendToQueue(queue, Buffer.from(msg)); return { worked: true, };
} catch (error) { console.error(error); return { worked: false, }; } };
module.exports = sendMessageToQueue;