0% found this document useful (0 votes)
254 views

Design Patterns For Microservices

This document discusses design patterns for microservices, beginning with the goals of microservice architecture: reducing cost, increasing release speed, improving resilience, and enabling visibility. It then outlines principles for microservice architecture like scalability, availability, and independent services. The document focuses on decomposition patterns like decomposing by business capability, subdomain, transactions, and the strangler pattern. It also covers integration patterns like API gateways, aggregators, proxies, routing, chained services, branching, and client-side UI composition.

Uploaded by

auyong jinyoo
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
254 views

Design Patterns For Microservices

This document discusses design patterns for microservices, beginning with the goals of microservice architecture: reducing cost, increasing release speed, improving resilience, and enabling visibility. It then outlines principles for microservice architecture like scalability, availability, and independent services. The document focuses on decomposition patterns like decomposing by business capability, subdomain, transactions, and the strangler pattern. It also covers integration patterns like API gateways, aggregators, proxies, routing, chained services, branching, and client-side UI composition.

Uploaded by

auyong jinyoo
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 12

Design Patterns for Microservices

by Madhuka Udantha · Jul. 30, 19 ·Microservices Zone · Analysis

Microservices can have a positive impact on your enterprise. Therefore it is worth knowing how to
handle Microservice Architecture (MSA) and some Design Patterns for Microservices, as well as,
general goals or principles for a microservice architecture. Here are the four goals to consider in the
Microservice Architecture approach [1].

Reduce Cost: MSA will reduce the overall cost of designing, implementing, and maintaining IT
services.
Increase Release Speed: MSA will increase the speed from idea to deployment of services.
Improve Resilience: MSA will improve the resilience of our service network.
Enable Visibility: MSA support for better visibility on your service and network.

You need to understand what principles microservice architecture has been built

Scalability
Availability
Resiliency
Flexibility
Independent, autonomous
Decentralized governance
Failure isolation
Auto-Provisioning
Continuous delivery through DevOps

Adhering to the above principles brings several challenges and issues while bring your solution or
system to live. Those problems are common for many solutions. Those can overcome with using
correct and matching design patterns. There are design patterns for microservices and those can be
divided into ive Patterns. Each contains many patterns.
Decomposition Patterns
Decompose by Business Capability Microservices is all about making services loosely coupled and
applying the single responsibility principle. It decomposes by business capability. De ine services
corresponding to business capabilities. A business capability is a concept from business architecture
modeling [2]. It is something that a business does in order to generate value. A business capability
often corresponds to a business object, e.g.

Order Management is responsible for orders


Customer Management is responsible for customers

Decompose by Subdomain
Decomposing an application using business capabilities might be a good start, but you will come across
so-called “God Classes” which will not be easy to decompose. These classes will be common among
multiple services. De ine services corresponding to Domain-Driven Design (DDD) subdomains. DDD
refers to the application’s problem space — the business — as the domain. A domain is consists of
multiple subdomains. Each subdomain corresponds to a different part of the business. Subdomains can
be classi ied as follows:
Core — key differentiator for the business and the most valuable part of the application
Supporting — related to what the business does but not a differentiator; can be implemented in-
house or outsourced
Generic — not speci ic to the business and are ideally implemented using off the shelf software

The subdomains of an Order management include:

Product catalog service


Inventory management services
Order management services
Delivery management services

Decompose by Transactions/Two-Phase Commit


(2pc) Pattern
This pattern can decompose services over the transactions. Then there will be multiple transactions in
the system. One of the important participants in a distributed transaction is the transaction
coordinator [3]. The distributed transaction consists of two steps:

Prepare phase — during this phase, all participants of the transaction prepare for commit and
notify the coordinator that they are ready to complete the transaction
Commit or Rollback phase — during this phase, either a commit or a rollback command is
issued by the transaction coordinator to all participants

The problem with 2PC is that it is quite slow compared to the time for operation of a single
microservice. Coordinating the transaction between microservices, even if they are on the same
network, can really slow the system down; so this approach isn’t usually used in a high load scenario.

Strangler Pattern
The irst three design patterns that you went through were decomposing applications for Green ield,
but 80% of the work you do is with brown ield applications, which are big, monolithic applications
(legacy codebase). The Strangler pattern comes to the rescue or solution. This creates two separate
applications that live side by side in the same URI space. Over time, the newly refactored application
“strangles” or replaces the original application until inally, you can shut off the monolithic application.
The Strangler Application steps are transformed, coexist, and eliminate [4]:

Transform — Create a parallel new site with modern approaches.


Coexist — Leave the existing site where it is for a time. Redirect from the existing site to the new
one so the functionality is implemented incrementally.
Eliminate — Remove the old functionality from the existing site.

Bulkhead Pattern
This pattern isolates elements of an application into pools so that if one fails, the others will continue
to function. This pattern is named Bulkhead because it resembles the sectioned partitions of a ship’s
hull. Partition service instances into different groups, based on consumer load and availability
requirements. This design helps to isolate failures, and allows you to sustain service functionality for
some consumers, even during a failure.

Sidecar Pattern
This deploys components of an application into a separate processor container to provide isolation and
encapsulation. This pattern can also enable applications to be composed of heterogeneous components
and technologies. This pattern is named Sidecar because it resembles a sidecar attached to a
motorcycle. In the pattern, the sidecar is attached to a parent application and provides supporting
features for the application. The sidecar also shares the same lifecycle as the parent application, is
created and retired alongside the parent. The sidecar pattern is sometimes referred to as the sidekick
pattern and is the last decomposition pattern that we show in the post.

Integration Patterns
API Gateway Pattern When an application is broken down to smaller microservices, there are a few
concerns that need to be addressed

There are multiple calls for multiple microservices by different channels.


There is a need for handling different type of Protocols.
Different consumers might need a different format of the responses.

An API Gateway helps to address many of the concerns raised by the microservice implementation, not
limited to the ones above.

An API Gateway is the single point of entry for any microservice calls.
It can work as a proxy service to route a request to the concerned microservice.
It can aggregate the results to send back to the consumer.
This solution can create a ine-grained API for each speci ic type of client.
It can also convert the protocol request and respond.
It can also of load the authentication/authorization responsibility of the microservice.

Aggregator Pattern
When breaking the business functionality into several smaller logical pieces of code, it becomes
necessary to think about how to collaborate the data returned by each service. This responsibility
cannot be left with the consumer.

The Aggregator pattern helps to address this. It talks about how we can aggregate the data from
different services and then send the inal response to the consumer. This can be done in two ways [6]:
A composite microservice will make calls to all the required microservices, consolidate the data,
and transform the data before sending back.
An API Gateway can also partition the request to multiple microservices and aggregate the data
before sending it to the consumer.

It is recommended if any business logic is to be applied, then choose a composite microservice.


Otherwise, the API Gateway is the established solution. Proxy Pattern API gateway just exposes
Microservices over API gateway. In this example, the API gateway has three API modules:

Mobile API, which implements the API for the FTGO mobile client.
Browser API, which implements the API to the JavaScript application running in the browser.
Public API, which implements the API for third-party developers.

Gateway Routing Pattern


The API gateway is responsible for request routing. An API gateway implements some API operations
by routing requests to the corresponding service. When it receives a request, the API gateway consults
a routing map that speci ies which service to route the request to. A routing map might, for example,
map an HTTP method and path to the HTTP URL of service. This function is identical to the reverse
proxying features provided by web servers such as NGINX.

Chained Microservice Pattern


There will be multiple dependencies of for single services or microservice eg: Sale microservice has
dependency products microservice and order microservice. Chained microservice design pattern will
help you to provide the consolidated outcome to your request.

The request received by a microservice: 1, which is then communicating with microservice-2 and it
may be communicating with microservice-3. All these services are synchronous calls.

Branch Pattern
A microservice may need to get the data from multiple sources including other microservices. Branch
microservice pattern is a mix of Aggregator and Chain design patterns and allows simultaneous
request/response processing from two or more microservices. The invoked microservice can be chains
of microservices. Branch pattern can also be used to invoke different chains of microservices, or a
single chain, based on your business needs.

Client-Side UI Composition Pattern


When services are developed by decomposing business capabilities/subdomains, the services
responsible for user experience have to pull data from several microservices. In the monolithic world,
there used to be only one call from the UI to a backend service to retrieve all data and refresh/submit
the UI page. However, now it won’t be the same. With microservices, the UI has to be designed as a
skeleton with multiple sections/regions of the screen/page. Each section will make a call to an
individual backend microservice to pull the data. Frameworks like AngularJS and ReactJS help to do
that easily. These screens are known as Single Page Applications (SPA). Each team develops a client-
side UI component, such an AngularJS directive, that implements the region of the page/screen for
their service. A UI team is responsible for implementing the page skeletons that build pages/screens by
composing multiple, service-speci ic UI components.

Database Patterns
De ining the database architecture for microservices we need to consider the below points.

Services must be loosely coupled. They can be developed, deployed, and scaled independently.
Business transactions may enforce invariants that span multiple services.
Some business transactions need to query data that is owned by multiple services.
Databases must sometimes be replicated and shared in order to scale.
Different services have different data storage requirements.

Database per Service


To solve the above concerns, one database per microservice must be designed; it must be private to
that service only. It should be accessed by the microservice API only. It cannot be accessed by other
services directly. For example, for relational databases, we can use private-tables-per-service, schema-
per-service, or database-server-per-service.

Shared Database per Service


We have talked about one database per service being ideal for microservices. It is an anti-pattern for
microservices. But if the application is a monolith and trying to break into microservices,
denormalization is not that easy. In the later phase, we can move to DB per service pattern. A shared
database per service is not ideal, but that is the working solution for the above scenario. Most people
consider this an anti-pattern for microservices, but for brown ield applications, this is a good start to
break the application into smaller logical pieces. This should not be applied for green ield applications.

Command Query Responsibility Segregation


(CQRS)
Once we implement database-per-service, there is a requirement to query, which requires joint data
from multiple services. it’s not possible. CQRS suggests splitting the application into two parts — the
command side and the query side.

The command side handles the Create, Update, and Delete requests.
The query side handles the query part by using the materialized views.

The event sourcing pattern is generally used along with it to create events for any data change.
Materialized views are kept updated by subscribing to the stream of events. Event Sourcing Most
applications work with data, and the typical approach is for the application to maintain the current
state. For example, in the traditional create, read, update, and delete (CRUD) model a typical data
process is to read data from the store. It contains limitations of locking the data, often using
transactions.

Event Sourcing Pattern


The Event Sourcing pattern [8] de ines an approach to handling operations on data that’s driven by a
sequence of events, each of which is recorded in an append-only store. Application code sends a series
of events that imperatively describe each action that has occurred on the data to the event store, where
they’re persisted. Each event represents a set of changes to the data (such as AddedItemToOrder). The
events are persisted in an event store that acts as the system of record. Typical uses of the events
published by the event store are to maintain materialized views of entities as actions in the application
change them, and for integration with external systems. For example, a system can maintain a
materialized view of all customer orders that are used to populate parts of the UI. As the application
adds new orders, adds or removes items on the order, and adds shipping information, the events that
describe these changes can be handled and used to update the materialized view. The igure shows an
overview of the pattern.

Event Sourcing pattern[8]

Saga Pattern
When each service has its own database and a business transaction spans multiple services, how do we
ensure data consistency across services? Each request has a compensating request that is executed
when the request fails. It can be implemented in two ways:
Choreography — When there is no central coordination, each service produces and listens to
another service’s events and decides if an action should be taken or not. Choreography is a way of
specifying how two or more parties; none of which have any control over the other parties’
processes, or perhaps any visibility of those processes — can coordinate their activities and
processes to share information and value. Use choreography when coordination across domains
of control/visibility is required. You can think of choreography, in a simple scenario, as like a
network protocol. It dictates acceptable patterns of requests and responses between parties.

Saga pattern — Choreography

Orchestration — An orchestrator (object) takes responsibility for a saga’s decision making and
sequencing business logic. when you have control over all the actors in a process. when they’re
all in one domain of control and you can control the low of activities. This is, of course, most
often when you’re specifying a business process that will be enacted inside one organization that
you have control over.

Sage pattern — Orchestration
Observability Patterns
Log Aggregation Consider a use case where an application consists of multiple services. Requests often
span multiple service instances. Each service instance generates a log ile in a standardized format. We
need a centralized logging service that aggregates logs from each service instance. Users can search
and analyze the logs. They can con igure alerts that are triggered when certain messages appear in the
logs. For example, PCF does have Log aggregator, which collects logs from each component (router,
controller, diego, etc…) of the PCF platform along with applications. AWS Cloud Watch also does the
same. Performance Metrics When the service portfolio increases due to a microservice architecture, it
becomes critical to keep a watch on the transactions so that patterns can be monitored and alerts sent
when an issue happens. A metrics service is required to gather statistics about individual operations. It
should aggregate the metrics of an application service, which provides reporting and alerting. There
are two models for aggregating metrics:

Push — the service pushes metrics to the metrics service e.g. NewRelic, AppDynamics.
Pull — the metrics services pulls metrics from the service e.g. Prometheus.

Distributed Tracing
In a microservice architecture, requests often span multiple services. Each service handles a request by
performing one or more operations across multiple services. While in troubleshoot it is worth to have
trace ID, we trace a request end-to-end. The solution is to introduce a transaction ID. Follow approach
can be used;

Assigns each external request a unique external request-id.


Passes the external request id to all services.
Includes the external request-id in all log messages.

Health Check
When microservice architecture has been implemented, there is a chance that a service might be up
but not able to handle transactions. Each service needs to have an endpoint that can be used to check
the health of the application, such as health. This API should o check the status of the host, the
connection to other services/infrastructure, and any speci ic logic.

Cross-Cutting Concern Patterns


External Configuration
A service typically calls other services and databases as well. For each environment like dev, QA, UAT,
prod, the endpoint URL or some con iguration properties might be different. A change in any of those
properties might require a re-build and re-deploy of the service. To avoid code modi ication
con iguration can be used. Externalize all the con iguration, including endpoint URLs and credentials.
The application should load them either at startup or on the ly. These can be accessed by the
application on startup or can be refreshed without a server restart.

Service Discovery Pattern


When microservices come into the picture, we need to address a few issues in terms of calling services.
With container technology, IP addresses are dynamically allocated to the service instances. Every time
the address changes, a consumer service can break and need manual changes. Each service URL has to
be remembered by the consumer and become tightly coupled. A service registry needs to be created
which will keep the metadata of each producer service and speci ication for each. A service instance
should register to the registry when starting and should de-register when shutting down. There are
two types of service discovery:

client-side : eg: Net lix Eureka.


Server-side : eg: AWS ALB.

service discovery [9]

Circuit Breaker Pattern


A service generally calls other services to retrieve data, and there is the chance that the downstream
service may be down. There are two problems with this: irst, the request will keep going to the down
service, exhausting network resources, and slowing performance. Second, the user experience will be
bad and unpredictable. The consumer should invoke a remote service via a proxy that behaves in a
similar fashion to an electrical circuit breaker. When the number of consecutive failures crosses a
threshold, the circuit breaker trips, and for the duration of a timeout period, all attempts to invoke the
remote service will fail immediately. After the timeout expires the circuit breaker allows a limited
number of test requests to pass through. If those requests succeed, the circuit breaker resumes normal
operation. Otherwise, if there is a failure, the timeout period begins again. This pattern is suited to,
prevent an application from trying to invoke a remote service or access a shared resource if this
operation is highly likely to fail.
Circuit Breaker Pattern [10]

Blue-Green Deployment Pattern


With microservice architecture, one application can have many microservices. If we stop all the
services then deploy an enhanced version, the downtime will be huge and can impact the business.
Also, the rollback will be a nightmare. Blue-Green Deployment Pattern avoids this. The blue-green
deployment strategy can be implemented to reduce or remove downtime. It achieves this by running
two identical production environments, Blue and Green. Let’s assume Green is the existing live instance
and Blue is the new version of the application. At any time, only one of the environments is live, with
the live environment serving all production traf ic. All cloud platforms provide options for
implementing a blue-green deployment.
Blue-Green Deployment Pattern

References

[1] “Microservice Architecture: Aligning Principles, Practices, and Culture” Book by Irakli Nadareishvili,
Matt McLarty, and Michael Amundsen

[2] https://microservices.io/patterns/decomposition/decompose-by-business-capability.html

[3] https://www.baeldung.com/transactions-across-microservices

[4] https://developer.ibm.com/articles/cl-strangler-application-pattern-microservices-apps-trs/

[5] https://docs.microsoft.com/en-us/azure/architecture/patterns/bulkhead

[6] https://dzone.com/articles/design-patterns-for-microservices

[7] https://docs.microsoft.com/en-us/azure/architecture/patterns/cqrs#event-sourcing-and-cqrs

[8] https://docs.microsoft.com/en-us/azure/architecture/patterns/event-sourcing

[9] https://www.dineshonjava.com/microservices-with-spring-boot/

[10] https://docs.microsoft.com/en-us/azure/architecture/patterns/circuit-breaker

You might also like