This is an Ecommerce project still development in progress
, where users can adds books to the cart and buy those books.
Application is being developed using Java, Spring and React.
Using Spring Cloud Microservices and Spring Boot Framework extensively to make this application distributed.
All the Microservices are developed using spring boot. This spring boot applications will be registered with eureka discovery server.
FrontEnd React App makes request's to NGINX server which acts as a reverse proxy. NGINX server redirects the requests to Zuul API Gateway.
Zuul will route the requests to microservice based on the url route. Zuul also registers with eureka and gets the ip/domain from eureka for microservice while routing the request.
Frontend App
Navigate to bookstore-frontend-react-app
folder
Run below commnads to start Frontend React Application
yarn install
yarn start
Backend Services
To Start Backend Services follow below steps.
Using Intellij/Eclipse or Command Line
Import this project into IDE and run all Spring boot projects or
build all the jars running mvn clean install
command in root parent pom, which builds all jars.
All services will be up in the below mentioned ports.
But running this way we wont get monitoring of microservices. So if monitoring needed to see metrics like jvm memory, tomcat error count and other metrics.
Use below method to deploy all the services and monitoring setup in docker.
Using Docker(Recommended)
Start Docker Engine in your machine.
Run mvn clean install
at root of project to build all the microservices jars.
Run docker-compose up --build
to start all the containers.
Use the Postman Api collection
in the Postman directory. To make request to various services.
Services will be exposed in this ports
Api Gateway Service : 8765
Eureka Discovery Service : 8761
Consul Discovery : 8500
Account Service : 4001
Billing Service : 5001
Catalog Service : 6001
Order Service : 7001
Payment Service : 8001
This project uses Eureka or Consul as Discovery service.
While running services in local, then using eureka as service discovery.
While running using docker, then consul is the service discovery.
Reason to use Consul is it has better features and support compared to Eureka. Running services individually in local uses Eureka as service discovery because dont want to run consul agent and set it up as it becomes extra overhead to manage. Since docker-compose manages all consul stuff hence using Consul while running services in docker.
If any issue while starting up services or any api failing. It may be because of new columns or new tables, at this point of time i am not worried much about DB migrations.
So any issues, clear/drop bookstore_db, things may start working agai, if not raise a Issue in Github i will help.
AWS is the cloud provider will be using to deploy this project.
Project wil deployed in multiple Regions and multiple Availability Zones.
React App, Zuul and Eureka will be the public facing service, which will be in public subnet
All the microservices will be packed into docker containers and deployes in the AWS ECS in the private subnet.
Private subnets uses NAT Gateway to make requests to external internet.
Bastian host can be used to ssh into private subnet microservices.
Below is the AWS Architecture diagram for better understanding.
There are 2 setups for monitoring
- Prometheus and Graphana.
- TICK stack monitoring.
Both the setups are very powerful, where prometheus works on pull model. we have to provide target hosts where the prometheus can pull the metrics from. If we specify target hosts using individual hostname/ip its not feasible at end because it will be like hard coded hostnames/ip. So we use Consul discovery to provide target hosts dynamically. By this way when more instances added for same service no need to worry about adding to prometheus target hosts because consul will dynamically add this target in prometheus.
TICK(Telegraf, InfluxDB, Chronograf, Kapacitor) This setup is getting more attention due to its push and pull model. InfluxDB is a time series database, bookstore services push the metrics to influxDB(push model), In Telegraf we specify the targets to pull metrics(pull model). Chronograf/Graphana can be used to view the graph/charts. Kapacitor is used to configure rules for alarms.
docker-compose
will take care of bringing all this monitoring containers up.
Dashboards are available at below ports
Graphana : 3030
Zipkin : 9411
Prometheus : 9090
Telegraf : 8125
InfluxDb : 8086
Chronograf : 8888
Kapacitor : 9092
First time login to Graphana use below credentials
Username : admin
Password : admin
Screenshots of Tracing in Zipkin.
Screenshots of Monitoring in Graphana.
Screenshots of Monitoring in Chronograf(TICK).
Account Service
To Get access_token
for the user, you need clientId
and clientSecret
clientId : '93ed453e-b7ac-4192-a6d4-c45fae0d99ac'
clientSecret : 'client.devd123'
There are 2 users in the system currently. ADMIN, NORMAL USER
Admin
userName: 'admin.admin'
password: 'admin.devd123'
Normal User
userName: 'devd.cores'
password: 'cores.devd123'
To get the accessToken (Admin User)
curl 93ed453e-b7ac-4192-a6d4-c45fae0d99ac:client.devd123@localhost:4001/oauth/token -d grant_type=password -d username=admin.admin -d password=admin.devd123