scp756-221 / term-project-data-miners

Implemented User-Music-Bookstore microservice architecture which is deployed on AWS Elastics Kubernetes Service where several REST APIs are used to fetch and store the data to and from AWS DynamoDB. Used Gatling to do load testing on the system and viewed the graphical metrics on Grafana

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dataminers: CMPT 756 Main Project Directory

This is the course repo for CMPT 756 (Spring 2022)

You will find resources for your assignments and term project here.

1. Prerequisites

Note: This project has been developed on the local machine and not in the Ubuntu Container(./tools/shell.sh).

  • Install istioctl, kubectl, eksctl, helm on your local machine.
  • Create a personal access token (PAT) for your GitHub account. You will need the three scopes: [read:packages], [write:packages] and [delete:packages]. Save your token in the file cluster/ghcr.io-token.txt
  • Instantiate configuration template:
    • Make a copy of tpl-vars-blank.txt named tpl-vars.txt, in the same directory.
    • On the line starting ZZ-REG-ID=, append your GitHub userid.(Note that there are no spaces around the = sign.)
    • Similarly, fill ZZ-AWS-REGION=us-west-2, ZZ-AWS-ACCESS-KEY-ID=<access-key-of-your-acc>, ZZ-AWS-SECRET-ACCESS-KEY=<secete-key-of-your-acc>
  • Fill the REGID= with your GitHub userid in dataminers.mak

2. Getting Started

Instantiate the template files.

$ make -f dataminers.mak initrepo

Starting the EKS Cluster.

This step can take some time

$ make -f dataminers.mak starteks

Create namespace inside each cluster and set each context

$ make -f dataminers.mak initns

To view the current context and all AWS clusters and nodegroups

$ make -f dataminers.mak listeks

Creating the DynamoDB Tables

$ make -f dataminers.mak initdb

Deploy User, Music and Bookstore service

$ make -f dataminers.mak deploy

Start simulation with desired number of Users

$ make -f dataminers.mak startsimulation NUM_OF_USERS=5

View the simulation with Grafana, Prometheus, Kiali

$ make -f dataminers.mak simulation-url

Stop Simulations

List the Simulation Docker Container

$ docker ps -a

Stop the containers running with ghcr.io/scp-2021-jan-cmpt-756/gatling:3.4.2 Image

$ docker stop <container-id>

About

Implemented User-Music-Bookstore microservice architecture which is deployed on AWS Elastics Kubernetes Service where several REST APIs are used to fetch and store the data to and from AWS DynamoDB. Used Gatling to do load testing on the system and viewed the graphical metrics on Grafana


Languages

Language:Python 44.2%Language:Makefile 27.1%Language:Shell 17.3%Language:Batchfile 5.6%Language:Scala 3.2%Language:Dockerfile 2.6%