Skip to content

JozPedro23zx/Journey_Microservices

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Journey Microservices

A project inspired by a practical class from a software development course, where we learned the importance of scalability, modularity, and resilience in system architecture. The main goal of this project is to transform a legacy monolithic system into a modern and efficient microservices architecture.

Comandos

Create a Docker network :

docker network create network-journey;

To create a kafka topic :

kafka-topics --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 3 --topic customers;

kafka-topics --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 3 --topic products;

kafka-topics --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 3 --topic rental;

Links