SlideShare a Scribd company logo
© 2019, Domain Driven Design Taiwan Community
Kim Kao ( )
April 25, 2019
Essential Capabilities behind
Microservices
© 2019, Domain Driven Design Taiwan Community
A typical day for a customer new to AWS...
Manager -
“We are going to run workload(s) on AWS.
We have new sub-systems/module to develop with legacy services.
Container is good, Lambda is awesome. It’s great to have whole
cloud native advantage if you guys migrate all service into
microservice, serverless...”
Developer - “Not a problem. I’ll make it 
”
© 2019, Domain Driven Design Taiwan Community
Business Wants
https://vaughnvernon.co/tag/event-storming/
© 2019, Domain Driven Design Taiwan Community
But You Want
https://vaughnvernon.co/tag/event-storming/
© 2019, Domain Driven Design Taiwan Community
Challenge on migration to Microserivces
‱ Legacy looks like Big ball of mud(BBOM)
‱ Heavy dependency with external system
‱ No idea on splitting BBOM
‱ No idea to find out system boundary
‱ Which service(s) worth to do
‱ Human resources allocation
‱ Team, out sourcing, ISVs solution
© 2019, Domain Driven Design Taiwan Community
What are Microservices?
© 2019, Domain Driven Design Taiwan Community
= Microservices ?
© 2019, Domain Driven Design Taiwan Community
100/200/300/1000?
LOC
© 2019, Domain Driven Design Taiwan Community
© 2018, Amazon Web Services, Inc. or Its Affiliates. All rights reserved.
What Are Microservices?
“A software architecture style in which complex
applications are composed of small, independent
processes communicating with each other using language-
agnostic APIs. These services are small, highly decoupled
and focus on doing a small task, facilitating a modular
approach to system-building.” - Wikipedia
https://en.wikipedia.org/wiki/Microservices
© 2019, Domain Driven Design Taiwan Community
Way to divide services from Monolith
‱ By noun(s)
‱ By Your Experience(s)
‱ By Team’s decision
‱ Up to Leader/Manager/CxO ...
‱ No right or power to influence
© 2019, Domain Driven Design Taiwan Community
Problem behind Microservices
© 2019, Domain Driven Design Taiwan Community
Monolith
Load
Balancer
Account Service
Cart Service
Shipping Service
StoreFront UI
Browser
Database
Data Access
Service
© 2019, Domain Driven Design Taiwan Community
Account
Database
Inventory
Database
Shipping
Database
Migrate to Microservices
Load
Balancer
StoreFront
UI
Browser
Account
Service
Cart Service
Shipping
Service
Load
Balancer
Load
Balancer
Load
Balancer
© 2019, Domain Driven Design Taiwan Community
Challenge is Coming
‱ Authentication & Authorization
‱ Session mechanism is broken
‱ Centralized & Robust alternative one is required
‱ Service Discovery
‱ Write the traffic routing code(s) in logic?
‱ Re-try, Failover, Caching, ...
‱ Persistence
‱ Isolated Persistence for each Service
© 2019, Domain Driven Design Taiwan Community
A Classic solution on AWS
Load
Balancer
StoreFront
UI
Browser
Account
Database
Account
Service
Cart Service Inventory
Database
Shipping
Service
API
Gateway
Load
Balancer
Load
Balancer
Load
Balancer
Shipping
Database
© 2019, Domain Driven Design Taiwan Community
Authentication & Authorization
‱ Token based solution fit in
‱ Cognito
‱ 3rd party Authentication Federation
‱ Amazon, Google, Apple, Facebook...
‱ Self developed/hosted centralize A&A
services
© 2019, Domain Driven Design Taiwan Community
Service Discovery
‱ Client Side-Service Discovery
‱ Application Load Balancer-based Service
Discovery
‱ DNS-Based Service Discovery
‱ Service Discovery using ECS Event
Stream
‱ Configuration Management
‱ New * App Service Mesh (preview)
‱ Cloud Map
© 2019, Domain Driven Design Taiwan Community
Microservices
For Persistence ?
Stateful Persistent always be the top issue !!!
© 2019, Domain Driven Design Taiwan Community
‱ Accept all API calls to one RDS Cluster
‱ RDS Instance Sizing predict by services scaling ability
‱ DBA(s) : How to manage Connection Pool ?
‱ Read replica can’t help on Write intention
‱ RDS I/O be the bottleneck when highly Scale up
‱ All Services impacted while any failure occurred
‱ Option : Upgrade Read Replica to Master
Launching 1 RDS cluster
© 2019, Domain Driven Design Taiwan Community
Launching N * RDS for Independency?
© 2019, Domain Driven Design Taiwan Community
‱ DynamoDB
‱ Perfect deal with high transaction (write)
‱ Serve each table for only one transaction/service intention
‱ De-Normalize schema is required
‱ Prevent revision issue
‱ Hard to do complexity Join Query
‱ Cost High
‱ Low Performance
‱ Coding for iteration & aggregation
‱ Apply all RDS tables into DynamoDB?
Using NoSQL Solution?
© 2019, Domain Driven Design Taiwan Community
It’s about capability
‱ Are you ready to deal with M:N transaction compensation ?
‱ Are you ready to embrace the rapidly change by contract ?
© 2019, Domain Driven Design Taiwan Community
Transaction Dependencies between Microservices
‱ Upstream-Downstream co-relationship
‱ One Transaction invoke local API and Remote API
Book Rental
Service
Book Flight
Service
Trip Service
Book Hotel
Service
Exception / Error ?
Exception / Error ?
Exception / Error ?
!"
#
!$
#
!#
#
+
+
Transaction Compensate
© 2019, Domain Driven Design Taiwan Community
Saga : Alternative for 2 Phase -commit
© 2019, Domain Driven Design Taiwan Community
Context
‱ You have applied the Database per Service pattern.
Each service has its own database.
‱ Some business transactions, however, span multiple
service so you need a mechanism to ensure data
consistency across services.
© 2019, Domain Driven Design Taiwan Community
Problem
How to maintain data consistency across services?
© 2019, Domain Driven Design Taiwan Community
Forces
‱ 2 Phase-Commit(PC) is a well-known solution for years
‱ The 2PC coordinator also represents a Single Point of
Failure, which is unacceptable for critical systems
© 2019, Domain Driven Design Taiwan Community
Solutions
‱ Each local transaction updates self
and publishes a message/event to
trigger the next local transaction in
the saga.
‱ If a local transaction fails because
it violates a business rule then the
saga executes a series of
compensating transactions that
undo the changes that were made
by the preceding local
transactions.
https://microservices.io/patterns/data/saga.html
© 2019, Domain Driven Design Taiwan Community
Two ways of Saga Pattern
‱ Choreography - each local transaction publishes
domain events that trigger local transactions in other
services
‱ Orchestration - an orchestrator (object) tells the
participants what local transactions to execute
https://microservices.io/patterns/data/saga.html
© 2019, Domain Driven Design Taiwan Community
Choreography-based Saga
https://microservices.io/patterns/data/saga.html
2
1
3.b
3.a
4.a
4.b
‱ Logic in code
‱ Compensate chain
‱ Multiple states present in transaction
© 2019, Domain Driven Design Taiwan Community
Orchestration -based Saga
https://microservices.io/patterns/data/saga.html
‱ Coordinator stand alone
‱ Each service provide
a pair function for Success or Fail
‱ Abstract compensate logic
out of Codes1
1.1 2 3
45
© 2019, Domain Driven Design Taiwan Community
Resulting Context
‱ This pattern has the following benefits:
‱ It enables an application to maintain data consistency across multiple services without
using distributed transactions
‱ This solution has the following drawbacks:
‱ The programming model is more complex. For example, a developer must design
compensating transactions that explicitly undo changes made earlier in a saga.
‱ There are also the following issues to address:
‱ In order to be reliable, a service must atomically update its database and publish a
message/event. It cannot use the traditional mechanism of a distributed transaction
that spans the database and the message broker. Instead, it must use one of the
patterns listed below.
© 2019, Domain Driven Design Taiwan Community
Implementing Saga
© 2019, Domain Driven Design Taiwan Community
‱ Each Service provide cancel operation
‱ State change trigger cancel operation
‱ Simplify Complexity rules
‱ Just a JSON file
© 2019, Domain Driven Design Taiwan Community
Code snippet
https://github.com/humank/lambda-saga-pattern
© 2019, Domain Driven Design Taiwan Community
Demo
© 2019, Domain Driven Design Taiwan Community
© 2019, Domain Driven Design Taiwan Community
How to adopt Microservices?
© 2019, Domain Driven Design Taiwan Community
© 2019, Domain Driven Design Taiwan Community
© 2019, Domain Driven Design Taiwan Community
© 2019, Domain Driven Design Taiwan Community
© 2019, Domain Driven Design Taiwan Community
© 2019, Domain Driven Design Taiwan Community
Business operation without whole picture
The Blind Men and the Elephant
Is It correct to all in microservices or serverless ?
© 2019, Domain Driven Design Taiwan Community
Precondition to do microservices
Rapid Provisioning
Basic monitoring
Rapid application deployment
Martin
Fowler
© 2019, Domain Driven Design Taiwan Community
Better way to decompose Monolith
Domain
Expert
Matters
&
© 2019, Domain Driven Design Taiwan Community
How to break Monolith?
© 2019, Domain Driven Design Taiwan Community
Way to collaborate
‱ Point out the events
‱ Who send the command
‱ Find the Noun(s)
‱ Have all team voices
Commands
Events
Aggregate
© 2019, Domain Driven Design Taiwan Community
Coffee shop experience
DDD by EventStorming
© 2019, Domain Driven Design Taiwan Community
© 2019, Domain Driven Design Taiwan Community
© 2019, Domain Driven Design Taiwan Community
© 2019, Domain Driven Design Taiwan Community
© 2019, Domain Driven Design Taiwan Community
© 2019, Domain Driven Design Taiwan Community
© 2019, Domain Driven Design Taiwan Community
© 2019, Domain Driven Design Taiwan Community
Go through Event Storming approach
Don’t tell tech only
Don’t sell tech partially
Aim for Core value
Figure out trigger
and result
© 2019, Domain Driven Design Taiwan Community
Seat
occupied
Menu offered
Ordered 2 cups
of Americano
Paid
Order
received
Coffee
made up
Customers
Left
Table
Cleaned
*Key Business Events in Coffeeshop
© 2019, Domain Driven Design Taiwan Community
Event Trigger
‱ Client
‱ Server
‱ Counter
‱ Barista
ACTORS
© 2019, Domain Driven Design Taiwan Community
Most Valuable / Risky Events
© 2019, Domain Driven Design Taiwan Community
© 2018, Amazon Web Services, Inc. or Its Affiliates. All rights reserved.
Order
Make Up
Payment
Event Bus
(pub/sub)
Put
event
Event
Event
CloudWatch Event
.
.
.
Any other messaging
technology
Coffee shop Domain implementation Core Domain
Sub Domain
(Messaging)
Support Domain
Core Domain
© 2019, Domain Driven Design Taiwan Community
When you should dive in Microservices
Team
Partners
Business
Operation
Coding
Value
© 2019, Domain Driven Design Taiwan Community
How DDD can help you
‱ Business strategy on resource allocation
‱ Best resources should be put in most key/core domain
‱ Buy or out-sourcing common domain and sub domain
‱ Service re-architecture
‱ Form up the system context boundary
‱ Knowing the upstream-downstream relationship between
domains
‱ Meaningful to do microservice (separate computing/persist,
and API communication )
‱ Service Migration
‱ Good to re-architecture
© 2019, Domain Driven Design Taiwan Community
Take Away
Know Why/What/How
‱ Do you really need Microservices?
‱ Leverage Business Events to aggregate
context and form up Service Boundary
‱ There is no C4 to solve distributed persistence
issue
‱ State Machine to do Transaction Compensate
(Step Functions way to go)
‱ DDD is good to collaborate Business and
Technology guys by speaking Ubiquitous
Language
‱ Crunch Problem, then design solution
© 2019, Domain Driven Design Taiwan Community
Implementing DDD on AWS
Commounty : DDD Taiwan@FB
Telegram : YikaiKao
WeChat : YikaiKao
Twitter : @YikaiKao
GitHub Repos

More Related Content

PDF
2019 03-23-2nd-meetup-essential capabilities behind microservices
PDF
2019 03-13-implementing microservices by ddd
PDF
2019 08-01-i ddd-studygroup-appendix
PDF
My past-3 yeas-developer-journey-at-linkedin-by-iantsai
PDF
2019-02-20-ddd taiwan-community-iddd-studygroup-1st
PDF
DDD Taiwan Community 2019 01-26-1st-meetup-why ddd matters
PPTX
IBM Cloud Services Portfolio
PDF
Cloudy with SaaS Shine
2019 03-23-2nd-meetup-essential capabilities behind microservices
2019 03-13-implementing microservices by ddd
2019 08-01-i ddd-studygroup-appendix
My past-3 yeas-developer-journey-at-linkedin-by-iantsai
2019-02-20-ddd taiwan-community-iddd-studygroup-1st
DDD Taiwan Community 2019 01-26-1st-meetup-why ddd matters
IBM Cloud Services Portfolio
Cloudy with SaaS Shine

What's hot (18)

PPTX
IBM Cloud Services Portfolio
PPTX
Cloud Service Management. A New Beginning.
PPTX
The Exinda WAN Optimization Appliance - Jason Whitaker, Transylvania University
PPTX
Cloudtechnologyassociatepart 1
PPTX
IBM Cloud Solution - Blue Box
PDF
IBM cloud open by design
PDF
Javascript Client & Server Architectures
PPT
2011.11.22 - Cloud Services Solution Provider - 8Ăšme Forum du Club Cloud des ...
PPTX
Bluemix overview v1.4
PPT
Cch slides input from cms walk through
PDF
IBM Codename: Bluemix - Cloudfoundry, PaaS development and deployment trainin...
PPT
IBM Cloud Service Provider Platform
PPT
IBM Softlayer Bluemix Marketplace
PDF
20190727 HashiCorp Consul Workshop: çźĄçźĄäœ ć€‘ćź¶ config 敩
PPTX
Perth DevOps Meetup - Introducing the IBM Innovation Lab - 12112015
PDF
Accelerate Digital Transformation with IBM Cloud Private
PDF
Cisco Prime Unified Management for Next-Generation Internet
PDF
DFW BlueMix Meetup - demo and slides
IBM Cloud Services Portfolio
Cloud Service Management. A New Beginning.
The Exinda WAN Optimization Appliance - Jason Whitaker, Transylvania University
Cloudtechnologyassociatepart 1
IBM Cloud Solution - Blue Box
IBM cloud open by design
Javascript Client & Server Architectures
2011.11.22 - Cloud Services Solution Provider - 8Ăšme Forum du Club Cloud des ...
Bluemix overview v1.4
Cch slides input from cms walk through
IBM Codename: Bluemix - Cloudfoundry, PaaS development and deployment trainin...
IBM Cloud Service Provider Platform
IBM Softlayer Bluemix Marketplace
20190727 HashiCorp Consul Workshop: çźĄçźĄäœ ć€‘ćź¶ config 敩
Perth DevOps Meetup - Introducing the IBM Innovation Lab - 12112015
Accelerate Digital Transformation with IBM Cloud Private
Cisco Prime Unified Management for Next-Generation Internet
DFW BlueMix Meetup - demo and slides
Ad

Similar to 2019 04-25-agile communitymeetup-essentialcapabilitiesbehindmicroservices (20)

PPTX
Microservices Architecture
PDF
2019 06-12-aws taipei summit-dev day-essential capabilities behind microservices
PPTX
Effective Microservices In a Data-centric World
PPTX
Event Driven Microservices architecture
PDF
Microservices and Data Design
PDF
Deconstructing Monoliths with Domain Driven Design
PPTX
Let's talk about... Microservices
PPTX
Modeling microservices using DDD
PPTX
QConSF-MicroServices-IPC-Netflix-Sudhir-2014.pptx
PDF
1. Why Event-Driven Microservices _ Building Event-Driven Microservices.pdf
PDF
Microservice
PDF
The Need of Cloud-Native Application
PPSX
Microservices Architecture - Cloud Native Apps
PPTX
Domain Driven Design - Strategic Patterns and Microservices
PDF
Serverless ddd
PDF
Zeroth review presentation - eBay Turmeric / SMC
PDF
CloudDesignPatterns
PPTX
Service Architectures at Scale
PPTX
Designing microservices part2
PDF
Microservices - Hitchhiker's guide to cloud native applications
Microservices Architecture
2019 06-12-aws taipei summit-dev day-essential capabilities behind microservices
Effective Microservices In a Data-centric World
Event Driven Microservices architecture
Microservices and Data Design
Deconstructing Monoliths with Domain Driven Design
Let's talk about... Microservices
Modeling microservices using DDD
QConSF-MicroServices-IPC-Netflix-Sudhir-2014.pptx
1. Why Event-Driven Microservices _ Building Event-Driven Microservices.pdf
Microservice
The Need of Cloud-Native Application
Microservices Architecture - Cloud Native Apps
Domain Driven Design - Strategic Patterns and Microservices
Serverless ddd
Zeroth review presentation - eBay Turmeric / SMC
CloudDesignPatterns
Service Architectures at Scale
Designing microservices part2
Microservices - Hitchhiker's guide to cloud native applications
Ad

Recently uploaded (20)

PPTX
ISO 45001 Occupational Health and Safety Management System
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PPTX
Introduction to Artificial Intelligence
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PPTX
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
PDF
Digital Strategies for Manufacturing Companies
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
System and Network Administration Chapter 2
PDF
medical staffing services at VALiNTRY
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
How Creative Agencies Leverage Project Management Software.pdf
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
AI in Product Development-omnex systems
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
ISO 45001 Occupational Health and Safety Management System
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Introduction to Artificial Intelligence
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Wondershare Filmora 15 Crack With Activation Key [2025
Which alternative to Crystal Reports is best for small or large businesses.pdf
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
VVF-Customer-Presentation2025-Ver1.9.pptx
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
Digital Strategies for Manufacturing Companies
CHAPTER 2 - PM Management and IT Context
System and Network Administration Chapter 2
medical staffing services at VALiNTRY
Upgrade and Innovation Strategies for SAP ERP Customers
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
How Creative Agencies Leverage Project Management Software.pdf
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
AI in Product Development-omnex systems
PTS Company Brochure 2025 (1).pdf.......
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool

2019 04-25-agile communitymeetup-essentialcapabilitiesbehindmicroservices

  • 1. © 2019, Domain Driven Design Taiwan Community Kim Kao ( ) April 25, 2019 Essential Capabilities behind Microservices
  • 2. © 2019, Domain Driven Design Taiwan Community A typical day for a customer new to AWS... Manager - “We are going to run workload(s) on AWS. We have new sub-systems/module to develop with legacy services. Container is good, Lambda is awesome. It’s great to have whole cloud native advantage if you guys migrate all service into microservice, serverless...” Developer - “Not a problem. I’ll make it 
”
  • 3. © 2019, Domain Driven Design Taiwan Community Business Wants https://vaughnvernon.co/tag/event-storming/
  • 4. © 2019, Domain Driven Design Taiwan Community But You Want https://vaughnvernon.co/tag/event-storming/
  • 5. © 2019, Domain Driven Design Taiwan Community Challenge on migration to Microserivces ‱ Legacy looks like Big ball of mud(BBOM) ‱ Heavy dependency with external system ‱ No idea on splitting BBOM ‱ No idea to find out system boundary ‱ Which service(s) worth to do ‱ Human resources allocation ‱ Team, out sourcing, ISVs solution
  • 6. © 2019, Domain Driven Design Taiwan Community What are Microservices?
  • 7. © 2019, Domain Driven Design Taiwan Community = Microservices ?
  • 8. © 2019, Domain Driven Design Taiwan Community 100/200/300/1000? LOC
  • 9. © 2019, Domain Driven Design Taiwan Community © 2018, Amazon Web Services, Inc. or Its Affiliates. All rights reserved. What Are Microservices? “A software architecture style in which complex applications are composed of small, independent processes communicating with each other using language- agnostic APIs. These services are small, highly decoupled and focus on doing a small task, facilitating a modular approach to system-building.” - Wikipedia https://en.wikipedia.org/wiki/Microservices
  • 10. © 2019, Domain Driven Design Taiwan Community Way to divide services from Monolith ‱ By noun(s) ‱ By Your Experience(s) ‱ By Team’s decision ‱ Up to Leader/Manager/CxO ... ‱ No right or power to influence
  • 11. © 2019, Domain Driven Design Taiwan Community Problem behind Microservices
  • 12. © 2019, Domain Driven Design Taiwan Community Monolith Load Balancer Account Service Cart Service Shipping Service StoreFront UI Browser Database Data Access Service
  • 13. © 2019, Domain Driven Design Taiwan Community Account Database Inventory Database Shipping Database Migrate to Microservices Load Balancer StoreFront UI Browser Account Service Cart Service Shipping Service Load Balancer Load Balancer Load Balancer
  • 14. © 2019, Domain Driven Design Taiwan Community Challenge is Coming ‱ Authentication & Authorization ‱ Session mechanism is broken ‱ Centralized & Robust alternative one is required ‱ Service Discovery ‱ Write the traffic routing code(s) in logic? ‱ Re-try, Failover, Caching, ... ‱ Persistence ‱ Isolated Persistence for each Service
  • 15. © 2019, Domain Driven Design Taiwan Community A Classic solution on AWS Load Balancer StoreFront UI Browser Account Database Account Service Cart Service Inventory Database Shipping Service API Gateway Load Balancer Load Balancer Load Balancer Shipping Database
  • 16. © 2019, Domain Driven Design Taiwan Community Authentication & Authorization ‱ Token based solution fit in ‱ Cognito ‱ 3rd party Authentication Federation ‱ Amazon, Google, Apple, Facebook... ‱ Self developed/hosted centralize A&A services
  • 17. © 2019, Domain Driven Design Taiwan Community Service Discovery ‱ Client Side-Service Discovery ‱ Application Load Balancer-based Service Discovery ‱ DNS-Based Service Discovery ‱ Service Discovery using ECS Event Stream ‱ Configuration Management ‱ New * App Service Mesh (preview) ‱ Cloud Map
  • 18. © 2019, Domain Driven Design Taiwan Community Microservices For Persistence ? Stateful Persistent always be the top issue !!!
  • 19. © 2019, Domain Driven Design Taiwan Community ‱ Accept all API calls to one RDS Cluster ‱ RDS Instance Sizing predict by services scaling ability ‱ DBA(s) : How to manage Connection Pool ? ‱ Read replica can’t help on Write intention ‱ RDS I/O be the bottleneck when highly Scale up ‱ All Services impacted while any failure occurred ‱ Option : Upgrade Read Replica to Master Launching 1 RDS cluster
  • 20. © 2019, Domain Driven Design Taiwan Community Launching N * RDS for Independency?
  • 21. © 2019, Domain Driven Design Taiwan Community ‱ DynamoDB ‱ Perfect deal with high transaction (write) ‱ Serve each table for only one transaction/service intention ‱ De-Normalize schema is required ‱ Prevent revision issue ‱ Hard to do complexity Join Query ‱ Cost High ‱ Low Performance ‱ Coding for iteration & aggregation ‱ Apply all RDS tables into DynamoDB? Using NoSQL Solution?
  • 22. © 2019, Domain Driven Design Taiwan Community It’s about capability ‱ Are you ready to deal with M:N transaction compensation ? ‱ Are you ready to embrace the rapidly change by contract ?
  • 23. © 2019, Domain Driven Design Taiwan Community Transaction Dependencies between Microservices ‱ Upstream-Downstream co-relationship ‱ One Transaction invoke local API and Remote API Book Rental Service Book Flight Service Trip Service Book Hotel Service Exception / Error ? Exception / Error ? Exception / Error ? !" # !$ # !# # + + Transaction Compensate
  • 24. © 2019, Domain Driven Design Taiwan Community Saga : Alternative for 2 Phase -commit
  • 25. © 2019, Domain Driven Design Taiwan Community Context ‱ You have applied the Database per Service pattern. Each service has its own database. ‱ Some business transactions, however, span multiple service so you need a mechanism to ensure data consistency across services.
  • 26. © 2019, Domain Driven Design Taiwan Community Problem How to maintain data consistency across services?
  • 27. © 2019, Domain Driven Design Taiwan Community Forces ‱ 2 Phase-Commit(PC) is a well-known solution for years ‱ The 2PC coordinator also represents a Single Point of Failure, which is unacceptable for critical systems
  • 28. © 2019, Domain Driven Design Taiwan Community Solutions ‱ Each local transaction updates self and publishes a message/event to trigger the next local transaction in the saga. ‱ If a local transaction fails because it violates a business rule then the saga executes a series of compensating transactions that undo the changes that were made by the preceding local transactions. https://microservices.io/patterns/data/saga.html
  • 29. © 2019, Domain Driven Design Taiwan Community Two ways of Saga Pattern ‱ Choreography - each local transaction publishes domain events that trigger local transactions in other services ‱ Orchestration - an orchestrator (object) tells the participants what local transactions to execute https://microservices.io/patterns/data/saga.html
  • 30. © 2019, Domain Driven Design Taiwan Community Choreography-based Saga https://microservices.io/patterns/data/saga.html 2 1 3.b 3.a 4.a 4.b ‱ Logic in code ‱ Compensate chain ‱ Multiple states present in transaction
  • 31. © 2019, Domain Driven Design Taiwan Community Orchestration -based Saga https://microservices.io/patterns/data/saga.html ‱ Coordinator stand alone ‱ Each service provide a pair function for Success or Fail ‱ Abstract compensate logic out of Codes1 1.1 2 3 45
  • 32. © 2019, Domain Driven Design Taiwan Community Resulting Context ‱ This pattern has the following benefits: ‱ It enables an application to maintain data consistency across multiple services without using distributed transactions ‱ This solution has the following drawbacks: ‱ The programming model is more complex. For example, a developer must design compensating transactions that explicitly undo changes made earlier in a saga. ‱ There are also the following issues to address: ‱ In order to be reliable, a service must atomically update its database and publish a message/event. It cannot use the traditional mechanism of a distributed transaction that spans the database and the message broker. Instead, it must use one of the patterns listed below.
  • 33. © 2019, Domain Driven Design Taiwan Community Implementing Saga
  • 34. © 2019, Domain Driven Design Taiwan Community ‱ Each Service provide cancel operation ‱ State change trigger cancel operation ‱ Simplify Complexity rules ‱ Just a JSON file
  • 35. © 2019, Domain Driven Design Taiwan Community Code snippet https://github.com/humank/lambda-saga-pattern
  • 36. © 2019, Domain Driven Design Taiwan Community Demo
  • 37. © 2019, Domain Driven Design Taiwan Community
  • 38. © 2019, Domain Driven Design Taiwan Community How to adopt Microservices?
  • 39. © 2019, Domain Driven Design Taiwan Community
  • 40. © 2019, Domain Driven Design Taiwan Community
  • 41. © 2019, Domain Driven Design Taiwan Community
  • 42. © 2019, Domain Driven Design Taiwan Community
  • 43. © 2019, Domain Driven Design Taiwan Community
  • 44. © 2019, Domain Driven Design Taiwan Community Business operation without whole picture The Blind Men and the Elephant Is It correct to all in microservices or serverless ?
  • 45. © 2019, Domain Driven Design Taiwan Community Precondition to do microservices Rapid Provisioning Basic monitoring Rapid application deployment Martin Fowler
  • 46. © 2019, Domain Driven Design Taiwan Community Better way to decompose Monolith Domain Expert Matters
  • 47. &
  • 48. © 2019, Domain Driven Design Taiwan Community How to break Monolith?
  • 49. © 2019, Domain Driven Design Taiwan Community Way to collaborate ‱ Point out the events ‱ Who send the command ‱ Find the Noun(s) ‱ Have all team voices Commands Events Aggregate
  • 50. © 2019, Domain Driven Design Taiwan Community Coffee shop experience DDD by EventStorming
  • 51. © 2019, Domain Driven Design Taiwan Community
  • 52. © 2019, Domain Driven Design Taiwan Community
  • 53. © 2019, Domain Driven Design Taiwan Community
  • 54. © 2019, Domain Driven Design Taiwan Community
  • 55. © 2019, Domain Driven Design Taiwan Community
  • 56. © 2019, Domain Driven Design Taiwan Community
  • 57. © 2019, Domain Driven Design Taiwan Community
  • 58. © 2019, Domain Driven Design Taiwan Community Go through Event Storming approach Don’t tell tech only Don’t sell tech partially Aim for Core value Figure out trigger and result
  • 59. © 2019, Domain Driven Design Taiwan Community Seat occupied Menu offered Ordered 2 cups of Americano Paid Order received Coffee made up Customers Left Table Cleaned *Key Business Events in Coffeeshop
  • 60. © 2019, Domain Driven Design Taiwan Community Event Trigger ‱ Client ‱ Server ‱ Counter ‱ Barista ACTORS
  • 61. © 2019, Domain Driven Design Taiwan Community Most Valuable / Risky Events
  • 62. © 2019, Domain Driven Design Taiwan Community © 2018, Amazon Web Services, Inc. or Its Affiliates. All rights reserved. Order Make Up Payment Event Bus (pub/sub) Put event Event Event CloudWatch Event . . . Any other messaging technology Coffee shop Domain implementation Core Domain Sub Domain (Messaging) Support Domain Core Domain
  • 63. © 2019, Domain Driven Design Taiwan Community When you should dive in Microservices Team Partners Business Operation Coding Value
  • 64. © 2019, Domain Driven Design Taiwan Community How DDD can help you ‱ Business strategy on resource allocation ‱ Best resources should be put in most key/core domain ‱ Buy or out-sourcing common domain and sub domain ‱ Service re-architecture ‱ Form up the system context boundary ‱ Knowing the upstream-downstream relationship between domains ‱ Meaningful to do microservice (separate computing/persist, and API communication ) ‱ Service Migration ‱ Good to re-architecture
  • 65. © 2019, Domain Driven Design Taiwan Community Take Away Know Why/What/How ‱ Do you really need Microservices? ‱ Leverage Business Events to aggregate context and form up Service Boundary ‱ There is no C4 to solve distributed persistence issue ‱ State Machine to do Transaction Compensate (Step Functions way to go) ‱ DDD is good to collaborate Business and Technology guys by speaking Ubiquitous Language ‱ Crunch Problem, then design solution
  • 66. © 2019, Domain Driven Design Taiwan Community Implementing DDD on AWS Commounty : DDD Taiwan@FB Telegram : YikaiKao WeChat : YikaiKao Twitter : @YikaiKao GitHub Repos