Skip to content

sifubro/microservices-python-kantancoding

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

Microservice Architecture and System Design with Python & Kubernetes

This repository refers to the freeCodeCamp.org hands-on tutorial about microservices architecture and distributed systems using Python, Kubernetes, RabbitMQ, MongoDB, and MySQL.

Watch the YouTube video for more information.

Application to convert video files to mp3

microservices

Description

  1. User uploads video to be converted to mp3
  2. The request will first hit our API Gateway
  3. The Gateway will store the video in mongoDB and put a message in the queue (RabbitMQ) letting downstream services that there is a video to be processed in mongoDB
  4. The video_to_mp3 converter service will consume messages from the queue. It will then
  • get the ID of the video from the message
  • pull that video from mongoDB
  • convert to mp3
  • store the mp3 on mongoDB
  • put a new message on the Queue to be consumed by the notification service that says "the conversion job is done"
  1. The notification service consumes those messages from the queue and sends an email notification to the client informing the client that the mp3 for the video that he/she uploaded is "ready for download"
  2. The client will use a unique ID acquired from the notification + his/her JWT to make a request to the API Gateway to download the mp3
  3. The API Gateway will pull the mp3 from mongoDB and serve it to the client

Frameworks used

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 99.1%
  • C 0.6%
  • C++ 0.1%
  • Cython 0.1%
  • PowerShell 0.1%
  • JavaScript 0.0%