How to Split Your
System into
Microservices
Eberhard Wolff
@ewolff
Fellow
http://continuous-delivery-buch.de/
http://microservices-buch.de/ http://microservices-book.com/
http://microservices-book.com/primer.html
FREE!!!!
Microservices:
Definition
> No consistent definition
> Microservices are modules
> Independent deployment units
> E.g. Docker container
> Microservice owned by one team
Microservices: Definition
Server /
Container
Server /
Container
Micro
Service
Micro
Service
Microservices aim for
decoupling
Why is the Split so
Important?
> Microservices implement a part of the logic
> Allow isolated development of features
> …and independent teams
> If split is wrong, you won’t achieve goals.
> …and there is just more complexity.
> But there are even more goals!
Why Microservices?
Strong Modularization
Scaling Agile
Sustainable development
Replaceable Services
Continuous Delivery
Free choice of technology
Handle Legacy efficient
Independent Scaling
Robustness
Small teams develop and
deploy independently
Add services – not code
Small Services
Failure limited to single
Microservice
Why Microservices?
Scaling Agile
Sustainable development
Continuous Delivery
Free choice of technology
Handle Legacy efficient
Independent Scaling
Robustness
Organization
Deployment
Units
Technology
There are many
reasons for
microservices.
There are many
scenarios for
microservices.
Scenario and reason
influence the split.
Bounded Context
UBIQUITOUS
LANGUAGE
VALUE
OBJECT
ENTITY
Address
VALUE
OBJECT
ENTITYor
529 pages
529 pages
Part IV
529 pages
Part IV
Chapter 14
A domain model
is only useful
in a BOUNDED CONTEXT.
There is no
universal data model
in a large system.
Address
for a customer
VALUE
OBJECT
ENTITYor
Address
for calculating the
drones’ routes
VALUE
OBJECT
ENTITYor
Microservice =
Bounded Context
Create some
Bounded
Contexts!
Sir, yes, sir!
Why would you build
a universal data
model if that is
neither possible nor
useful??
Bounded Context:
Challenge
> Not a way to design a great architecture
> …but consequence of good domain
architecture
> i.e. clearly separated domains will lead to
separated BOUNDED CONTEXTS
> …containing logic and data
> How can you find BOUNDED CONTEXTS?
Bounded Context:
Challenge
> Coarse-grained
> Ideal: implement a functionality in one unit
> Ideal: Independence
> Might have relationships
> …limiting independence
Divide by Use Cases
> Microservice should implement a use case
> …ideally without calling other microservices
> Divide use cases among microservices
> …then decide about the BOUNDED CONTEXT
BrowsingRegistration
Creating Microservices
User Registration Search Products
by Keywords
Browse Products
by Category
Checkout
Payment
Define ShipmentUpdate Profile
Basic customer
data
Preferences
Recommendations
Billing address
Payment
information
All these services have data about the customer!!
Bounded Context
Scaling Agile
Sustainable development
Continuous Delivery
Free choice of technology
Handle Legacy efficient
Independent Scaling
Robustness
Organization
Deployment
Units
Technology
What about other
scenarios??
Existing Architecture
Product Customer Warehouse
Product
Service
Customer
Service
Warehouse
Service
iOS Android PoS Web
Let’s create some
Bounded Contexts!
Existing Architecture
Product Customer Warehouse
Product
Service
Customer
Service
Warehouse
Service
iOS Android PoS Web
Browsing
Bounded Contexts
> Browsing distributed in many artifacts
> Change to Browsing might influence all of
them
> …or not
> BOUNDED CONTEXTS would be desirable
Migrate to Bounded Context
Product Customer Warehouse
Product
Service
Customer
Service
Warehouse
Service
iOS Android PoS Web
BrowsingBrowsing
Introducing
Bounded Contexts
> …would change the architecture completely
> …might be very hard
> …and risky
> Is it worth it?
> Is it even doable?
> Might also change the organization
Add services
Product Customer Warehouse
Product
Service
Customer
Service
Warehouse
Service
iOS Android PoS Web
Add services
Product Customer Warehouse
Product
Service
Customer
Service
Warehouse
Service
iOS Android PoS Web
News-
letter
Web
Add Service
> Might replace the old system stepwise
> Immediate benefits
> Low risk
> Major reason for microservices
Cut existing services
Product Customer Warehouse
Product
Service
Customer
Service
Warehouse
Service
iOS Android PoS Web
Existing Architecture
Scaling Agile
Sustainable development
Continuous Delivery
Free choice of technology
Handle Legacy efficient
Independent Scaling
Robustness
Organization
Deployment
Units
Technology
Existing Architecture
> ...has an impact on the target architecture
> What good is an architecture you cannot
migrate into?
> Might overrule everything else
> Even BOUNDED CONTEXT
BrowsingRegistration
External Systems
User Registration Search Products
by Keywords
Browse Products
by Category
Checkout
Payment
Define ShipmentUpdate Profile Browse Products
by Category
Payment
Provider
Logistic
Partner
BrowsingRegistration
External Systems
User Registration Search Products
by Keywords
Browse Products
by Category
Checkout
Update Profile Browse Products
by Category
Payment
Provider
Logistic
Partner
Payment Shipping
External Systems
> Limit integration for each external system to
one Microservice
> External system might belong to a domain
> …or BOUNDED CONTEXT
> ...or not
> Simplifies integration
> Easier to achieve robustness
External Systems
Scaling Agile
Sustainable development
Continuous Delivery
Free choice of technology
Handle Legacy efficient
Independent Scaling
Robustness
Organization
Deployment
Units
Technology
We expect a
lot more
registrations!
BrowsingRegistration
External Systems
User Registration Search Products
by Keywords
Browse Products
by Category
Checkout
Payment
Define ShipmentUpdate Profile Browse Products
by Category
BrowsingRegistration
External Systems
Search Products
by Keywords
Browse Products
by Category
Checkout
Payment
Define ShipmentBrowse Products
by Category
Regis-
tration
Update
Profile
Technical Reasons
> Independent scalability is just one technical
reason
> There are many more
> Might be OK to share database in this
scenario
> Might even split read and write
CQRS
> Command – Query Responsibility
Segregation
> Commands change data
> Query provide data
> Implement in separate microservices
Command
Queue
Command
Command
Command
Command
Handler
Query
Handler
Command
Store
Database Read Replica
Technical Reasons
Scaling Agile
Sustainable development
Continuous Delivery
Free choice of technology
Handle Legacy efficient
Independent Scaling
Robustness
Organization
Deployment
Units
Technology
Registration
Requirements
Browsing Checkout
Marketing Sales Fulfillment Finance
Requirements
> One microservice should implement one
stream of requirements
> Otherwise: coordinate priorities
> …and therefore less independence
Registration
Requirements
Browsing Payment
Marketing Sales FulfillmentFinance
Shipping
Requirements
Scaling Agile
Sustainable development
Continuous Delivery
Free choice of technology
Handle Legacy efficient
Independent Scaling
Robustness
Organization
Deployment
Units
Technology
Conclusion
Microservices
= Bounded Context
Split
Bounded
Context
Migration
External
Systems
Technical
Reasons
Require-
ments
EMail slideswjax2016@ewolff.com to get:
Slides
+ Microservices Primer
+ Sample Microservices Book
+ Sample of Continuous Delivery Book
Powered by Amazon Lambda & Microservices

How to Split Your System into Microservices