Skip to content

AdithyaR07/UE20CS351-Cloud-Computing-Project-2-Microservice-communication-with-RabbitMQ

Repository files navigation

Microservice communication with RabbitMQ

Team Members

  1. Abhinav Gunti (PES1UG20CS008)
  2. Adithya R Narayan (PES1UG20CS014)
  3. Akash Shankar (PES1UG20CS028)
  4. Anish Khairnar (PES1UG20CS058)

Introduction

The microservice architecture is one of the most popular forms of deployment, especially in larger organizations where there are multiple components that can be loosely coupled together. Not only does this make it easier to work on separate components independently, but ensures that issues in one component do not bring down the rest of the service. A microservices architecture consists of a collection of small, autonomous services where each service is self-contained and should implement a single business capability within a bounded context. This also comes with the advantage that a single system can scale thereby limiting the resources to required components. For example, during a shopping sale, the cart and payment microservices might need more resources than the login microservice.

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.

Prerequisites

  • Docker ( Windows | Ubuntu | MacOS )
  • Rabbitmq Docker image (Documentation for rabbitMQ)
  • Any language of choice (Python is recommended)
  • Postman (cURL can be used if not postman)
  • Any DataBase of choice (MongoDB/SQL preferably) (Note : Using Linux is preferred)

Problem Statement

Building and deploying a microservices architecture where multiple components communicate with each other using RabbitMQ. A message broker is an architectural pattern for message validation, transformation and routing. For the scope of this project, we will build 4 microservices: A HTTP server that handles incoming requests to perform CRUD operations on a Student Management Database + Check the health of the RabbitMQ connection, a microservice that acts as the health check endpoint, a microservice that inserts a single student record, a microservice that retrieves student records, a microservice that deletes a student record given the SRN.

Flow Diagram

alt text

File Structure

├── <microservices-project-directory>
    ├── docker-compose.yml
    ├── producer
    │   ├── producer.py
    │   ├── Dockerfile
        └──requirements.txt
    ├── consumer_one
    │   ├── healthcheck.py
    │   ├── Dockerfile
    │   └──requirements.txt
    ├── consumer_two
    │   ├── insertion.py
    │   ├── Dockerfile
    │   └──requirements.txt
    ├── consumer_three
    │   ├── deletion.py
    │   ├── Dockerfile
    │   └──requirements.txt
    └── consumer_four
        ├── read.py
        ├── Dockerfile
        └──requirements.txt

Instructions

  • Create a Docker network manually that will host the RabbitMQ image. Start a RabbitMQ container on the network created. Access this network through its gateway IP address to connect to RabbitMQ from producer/consumers. Totally, 2 networks should exist, one holding the RabbitMQ container and the other holding all the remaining microservices. Hint: The docker-compose file which spins up the producer and consumers ensures that they lie on the network automatically.

  • For the producer service:

    • It is a RabbitMQ client that can construct queues/exchanges and transfer the necessary data to consumers. The exchange to deliver the messages to one of the 4 different queues(one for each consumer) based on the binding/routing key.

    • An HTTP Server (Flask for Python/Express for NodeJS) to listen to health_check requests so that it can distribute it to the respective consumer.

      • This server will be listening to requests which are GET type and the health_check message should be sent as an argument for the request
      • The health check message can be any string. It is to check if the rabbitmq connection is established.
    • An HTTP Server to listen to insert_record requests so that it can distribute it to the respective consumer which will insert record into the database

      • The HTTP server will be the same one created previously and will follow a new path, or if they want, they can start it on a different port. This must be followed for the servers upcoming as well.
      • This server will be listening to requests which are POST type and the request must contain the following fields : Name, SRN and Section.
    • An HTTP Server to listen to read_database requests so that it can distribute it to the respective consumer which will retrieve all the records of the database.

      • This server will be listening to requests which are of GET type.
    • An HTTP Server to listen to read_database requests so that it can distribute it to the respective consumer which will retrieve all the records of the database.

      • This server will be listening to requests which are of GET type.
    • An HTTP Server to listen to delete_record requests so that it can distribute it to the respective consumer which will delete the record based on the SRN sent

      • This server will be listening to requests which are GET type where the SRN is passed as an argument. Based on the SRN passed, the consumer must delete that particular record.
  • For the consumer_one (health_check):

    • RabbitMQ Client to listen for incoming requests on the “health_check” queue and process it.

    • This consumer must acknowledge that the health-check message has been listened to through the “health_check” queue. (Simple Ack)

  • For the consumer_two (insert_record):

    • RabbitMQ Client to listen for incoming requests on the “insert_record” queue and process it.

    • This consumer must insert the record into the database (DB is students choice. Could use SQL,MongoDB,etc). The data to be inserted will be listened to through the “insert_record” queue.

  • For the consumer_three (delete_record):

    • RabbitMQ Client to listen for incoming requests on the “delete_record” queue and process it.

    • This consumer must delete a record from the database based on the SRN which has been listened to through the “delete_record” queue.

  • For the consumer_four (read_database):

    • RabbitMQ Client to listen for incoming requests on the “read_database” queue and process it.
    • This consumer must retrieve all the records present in the database.
  • Dockerizing the application

    • Make sure to expose the necessary ports for communication when creating Dockerfiles for the producer and consumer programs.

    • A docker-compose file must be created that runs the producer, consumers and the database microservice container.

Test microservices communicating

  • To check if the microservices are communicating, try the below instructions:
    • Run the docker-compose file using the command “docker-compose up” and check if all the containers are created. The HTTP server must start running and the consumers must be able to wait for messages through RabbitMQ queues.

    • For consumer_one :

      • Send a GET request to the server with the appropriate path & argument
      • Requests can be sent via Postman or cURL
      • Check if the message has been transmitted via the queue. Example URL :- bash http://{IP-Address}/{health_check route}
    • For consumer_two :

      • Send a POST request to the server with the appropriate path & data to be sent.
      • Check if the data has been inserted into the database
    • For consumer_three :

      • Send a GET database request to the server with the appropriate path & argument
      • Check if the record has been deleted in the DB
    • For consumer_four :

      • Send a GET request to the server with the appropriate path
      • Check the content of the DB
    • To end the process, use the command “docker-compose down”

Explore more!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published