Skip to content

Microservice Architecture with Spring Boot, Spring Cloud and Docker

License

Notifications You must be signed in to change notification settings

sqshq/piggymetrics

Repository files navigation

Build Status codecov.io GitHub license Join the chat at https://gitter.im/sqshq/PiggyMetrics

Piggy Metrics

Piggy Metrics is a simple financial advisor app built to demonstrate theMicroservice Architecture Patternusing Spring Boot, Spring Cloud and Docker. The project is intended as a tutorial, but you are welcome to fork it and turn it into something else!


Piggy Metrics

Functional services

Piggy Metrics is decomposed into three core microservices. All of them are independently deployable applications organized around certain business domains.

Functional services

Account service

Contains general input logic and validation: incomes/expenses items, savings and account settings.

Method Path Description User authenticated Available from UI
GET /accounts/{account} Get specified account data
GET /accounts/current Get current account data × ×
GET /accounts/demo Get demo account data (pre-filled incomes/expenses items, etc) ×
PUT /accounts/current Save current account data × ×
POST /accounts/ Register new account ×

Statistics service

Performs calculations on major statistics parameters and captures time series for each account. Datapoint contains values normalized to base currency and time period. This data is used to track cash flow dynamics during the account lifetime.

Method Path Description User authenticated Available from UI
GET /statistics/{account} Get specified account statistics
GET /statistics/current Get current account statistics × ×
GET /statistics/demo Get demo account statistics ×
PUT /statistics/{account} Create or update time series datapoint for specified account

Notification service

Stores user contact information and notification settings (reminders, backup frequency etc). Scheduled worker collects required information from other services and sends e-mail messages to subscribed customers.

Method Path Description User authenticated Available from UI
GET /notifications/settings/current Get current account notification settings × ×
PUT /notifications/settings/current Save current account notification settings × ×

Notes

  • Each microservice has its own database, so there is no way to bypass API and access persistence data directly.
  • MongoDB is used as a primary database for each of the services.
  • All services are talking to each other via the Rest API

Infrastructure

Spring cloudprovides powerful tools for developers to quickly implement common distributed systems patterns - Infrastructure services

Config service

Spring Cloud Configis horizontally scalable centralized configuration service for the distributed systems. It uses a pluggable repository layer that currently supports local storage, Git, and Subversion.

In this project, we are going to usenative profile,which simply loads config files from the local classpath. You can seeshareddirectory inConfig service resources.Now, when Notification-service requests its configuration, Config service responses withshared/notification-service.ymlandshared/application.yml(which is shared between all client applications).

Client side usage

Just build Spring Boot application withspring-cloud-starter-configdependency, autoconfiguration will do the rest.

Now you don't need any embedded properties in your application. Just providebootstrap.ymlwith application name and Config service url:

spring:
application:
name:notification-service
cloud:
config:
uri:http://config:8888
fail-fast:true
With Spring Cloud Config, you can change application config dynamically.

For example,EmailService beanis annotated with@RefreshScope.That means you can change e-mail text and subject without rebuild and restart the Notification service.

First, change required properties in Config server. Then make a refresh call to the Notification service: curl -H "Authorization: Bearer #token#" -XPOST http://127.0.0.1:8000/notifications/refresh

You could also use Repositorywebhooks to automate this process

Notes
  • @RefreshScopedoesn't work with@Configurationclasses and doesn't ignores@Scheduledmethods
  • fail-fastproperty means that Spring Boot application will fail startup immediately, if it cannot connect to the Config Service.

Auth service

Authorization responsibilities are extracted to a separate server, which grantsOAuth2 tokensfor the backend resource services. Auth Server is used for user authorization as well as for secure machine-to-machine communication inside the perimeter.

In this project, I usePassword credentialsgrant type for users authorization (since it's used only by the UI) andClient Credentialsgrant for service-to-service communciation.

Spring Cloud Security provides convenient annotations and autoconfiguration to make this really easy to implement on both server and client side. You can learn more about that indocumentation.

On the client side, everything works exactly the same as with traditional session-based authorization. You can retrievePrincipalobject from the request, check user roles using the expression-based access control and@PreAuthorizeannotation.

Each PiggyMetrics client has a scope:serverfor backend services andui- for the browser. We can use@PreAuthorizeannotation to protect controllers from an external access:

@PreAuthorize("#oauth2.hasScope('server')")
@RequestMapping(value="accounts/{name}",method=RequestMethod.GET)
publicList<DataPoint>getStatisticsByAccountName(@PathVariableStringname) {
returnstatisticsService.findByAccountName(name);
}

API Gateway

API Gateway is a single entry point into the system, used to handle requests and routing them to the appropriate backend service or byaggregating results from a scatter-gather call.Also, it can be used for authentication, insights, stress and canary testing, service migration, static response handling and active traffic management.

Netflix opensourcedsuch an edge serviceand Spring Cloud allows to use it with a single@EnableZuulProxyannotation. In this project, we use Zuul to store some static content (the UI application) and to route requests to appropriate the microservices. Here's a simple prefix-based routing configuration for the Notification service:

zuul:
routes:
notification-service:
path:/notifications/**
serviceId:notification-service
stripPrefix:false

That means all requests starting with/notificationswill be routed to the Notification service. There is no hardcoded addresses, as you can see. Zuul usesService discoverymechanism to locate Notification service instances and alsoCircuit Breaker and Load Balancer,described below.

Service Discovery

Service Discovery allows automatic detection of the network locations for all registered services. These locations might have dynamically assigned addresses due to auto-scaling, failures or upgrades.

The key part of Service discovery is the Registry. In this project, we use Netflix Eureka. Eureka is a good example of the client-side discovery pattern, where client is responsible for looking up the locations of available service instances and load balancing between them.

With Spring Boot, you can easily build Eureka Registry using thespring-cloud-starter-eureka-serverdependency,@EnableEurekaServerannotation and simple configuration properties.

Client support enabled with@EnableDiscoveryClientannotation abootstrap.ymlwith application name:

spring:
application:
name:notification-service

This service will be registered with the Eureka Server and provided with metadata such as host, port, health indicator URL, home page etc. Eureka receives heartbeat messages from each instance belonging to the service. If the heartbeat fails over a configurable timetable, the instance will be removed from the registry.

Also, Eureka provides a simple interface where you can track running services and a number of available instances:http://localhost:8761

Load balancer, Circuit breaker and Http client

Ribbon

Ribbon is a client side load balancer which gives you a lot of control over the behaviour of HTTP and TCP clients. Compared to a traditional load balancer, there is no need in additional network hop - you can contact desired service directly.

Out of the box, it natively integrates with Spring Cloud and Service Discovery.Eureka Clientprovides a dynamic list of available servers so Ribbon could balance between them.

Hystrix

Hystrix is the implementation ofCircuit Breaker Pattern,which gives us a control over latency and network failures while communicating with other services. The main idea is to stop cascading failures in the distributed environment - that helps to fail fast and recover as soon as possible - important aspects of a fault-tolerant system that can self-heal.

Moreover, Hystrix generates metrics on execution outcomes and latency for each command, that we can use tomonitor system's behavior.

Feign

Feign is a declarative Http client which seamlessly integrates with Ribbon and Hystrix. Actually, a singlespring-cloud-starter-feigndependency and@EnableFeignClientsannotation gives us a full set of tools, including Load balancer, Circuit Breaker and Http client with reasonable default configuration.

Here is an example from the Account Service:

@FeignClient(name="statistics-service")
publicinterfaceStatisticsServiceClient{

@RequestMapping(method=RequestMethod.PUT,value="/statistics/{accountName}",consumes=MediaType.APPLICATION_JSON_UTF8_VALUE)
voidupdateStatistics(@PathVariable("accountName")StringaccountName,Accountaccount);

}
  • Everything you need is just an interface
  • You can share@RequestMappingpart between Spring MVC controller and Feign methods
  • Above example specifies just a desired service id -statistics-service,thanks to auto-discovery through Eureka

Monitor dashboard

In this project configuration, each microservice with Hystrix on board pushes metrics to Turbine via Spring Cloud Bus (with AMQP broker). The Monitoring project is just a small Spring boot application with theTurbineandHystrix Dashboard.

Let's see observe the behavior of our system under load: Statistics Service imitates a delay during the request processing. The response timeout is set to 1 second:

0 ms delay 500 ms delay 800 ms delay 1100 ms delay
Well behaving system. Throughput is about 22 rps. Small number of active threads in the Statistics service. Median service time is about 50 ms. The number of active threads is growing. We can see purple number of thread-pool rejections and therefore about 40% of errors, but the circuit is still closed. Half-open state: the ratio of failed commands is higher than 50%, so the circuit breaker kicks in. After sleep window amount of time, the next request goes through. 100 percent of the requests fail. The circuit is now permanently open. Retry after sleep time won't close the circuit again because a single request is too slow.

Log analysis

Centralized logging can be very useful while attempting to identify problems in a distributed environment. Elasticsearch, Logstash and Kibana stack lets you search and analyze your logs, utilization and network activity data with ease.

Distributed tracing

Analyzing problems in distributed systems can be difficult, especially trying to trace requests that propagate from one microservice to another.

Spring Cloud Sleuthsolves this problem by providing support for the distributed tracing. It adds two types of IDs to the logging:traceIdandspanId.spanIdrepresents a basic unit of work, for example sending an HTTP request. The traceId contains a set of spans forming a tree-like structure. For example, with a distributed big-data store, a trace might be formed by a PUT request. UsingtraceIdandspanIdfor each operation we know when and where our application is as it processes a request, making reading logs much easier.

The logs are as follows, notice the[appname,traceId,spanId,exportable]entries from the Slf4J MDC:

2018-07-26 23:13:49.381 WARN [gateway,3216d0de1384bb4f,3216d0de1384bb4f,false] 2999 --- [nio-4000-exec-1] o.s.c.n.z.f.r.s.AbstractRibbonCommand: The Hystrix timeout of 20000ms for the command account-service is set lower than the combination of the Ribbon read and connect timeout, 80000ms.
2018-07-26 23:13:49.562 INFO [account-service,3216d0de1384bb4f,404ff09c5cf91d2e,false] 3079 --- [nio-6000-exec-1] c.p.account.service.AccountServiceImpl: new account has been created: test
  • appname:The name of the application that logged the span from the propertyspring.application.name
  • traceId:This is an ID that is assigned to a single request, job, or action
  • spanId:The ID of a specific operation that took place
  • exportable:Whether the log should be exported toZipkin

Infrastructure automation

Deploying microservices, with their interdependence, is much more complex process than deploying a monolithic application. It is really important to have a fully automated infrastructure. We can achieve following benefits with Continuous Delivery approach:

  • The ability to release software anytime
  • Any build could end up being a release
  • Build artifacts once - deploy as needed

Here is a simple Continuous Delivery workflow, implemented in this project:

In thisconfiguration,Travis CI builds tagged images for each successful git push. So, there are always thelatestimages for each microservice onDocker Huband older images, tagged with git commit hash. It's easy to deploy any of them and quickly rollback, if needed.

Let's try it out

Note that starting 8 Spring Boot applications, 4 MongoDB instances and a RabbitMq requires at least 4Gb of RAM.

Before you start

  • Install Docker and Docker Compose.
  • Change environment variable values in.envfile for more security or leave it as it is.
  • Build the project:mvn package [-DskipTests]

Production mode

In this mode, all latest images will be pulled from Docker Hub. Just copydocker-compose.ymland hitdocker-compose up

Development mode

If you'd like to build images yourself, you have to clone the repository and build artifacts using maven. After that, rundocker-compose -f docker-compose.yml -f docker-compose.dev.yml up

docker-compose.dev.ymlinheritsdocker-compose.ymlwith additional possibility to build images locally and expose all containers ports for convenient development.

If you'd like to start applications in Intellij Idea you need to either useEnvFile pluginor manually export environment variables listed in.envfile (make sure they were exported:printenv)

Important endpoints

Contributions are welcome!

PiggyMetrics is open source, and would greatly appreciate your help. Feel free to suggest and implement any improvements.