Movatterモバイル変換


[0]ホーム

URL:


Microservice Architecture

Supported byKong

Pattern: Saga

pattern  transaction management  sagas  service collaboration  implementing commands 

Want to learn more about this pattern?

Take a look at myself-paced, online bootcamp that teaches you how to use the Saga, API Composition, and CQRS patterns to design operations that span multiple services.

The regular price is $395/person but use coupon OFFEFKCW to sign up for $95 (valid until Sept 30th, 2025)

Context

You have applied theDatabase per Service pattern.Each service has its own database.Some business transactions, however, span multiple service so you need a mechanism to implement transactions that span services.For example, let’s imagine that you are building an e-commerce store where customers have a credit limit.The application must ensure that a new order will not exceed the customer’s credit limit.Since Orders and Customers are in different databases owned by different services the application cannot simply use a local ACID transaction.

Problem

How to implement transactions that span services?

Forces

  • 2PC is not an option

Solution

Implement each business transaction that spans multiple services as a saga.A saga is a sequence of local transactions.Each local transaction updates the database and publishes a message or 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.

There are two ways of coordination sagas:

  • 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

Example: Choreography-based saga

An e-commerce application that uses this approach would create an order using a choreography-based saga that consists of the following steps:

  1. TheOrder Service receives thePOST /orders request and creates anOrder in aPENDING state
  2. It then emits anOrder Created event
  3. TheCustomer Service’s event handler attempts to reserve credit
  4. It then emits an event indicating the outcome
  5. TheOrderService’s event handler either approves or rejects theOrder

Take a tour of an example saga

Example: Orchestration-based saga

An e-commerce application that uses this approach would create an order using an orchestration-based saga that consists of the following steps:

  1. TheOrder Service receives thePOST /orders request and creates theCreate Order saga orchestrator
  2. The saga orchestrator creates anOrder in thePENDING state
  3. It then sends aReserve Credit command to theCustomer Service
  4. TheCustomer Service attempts to reserve credit
  5. It then sends back a reply message indicating the outcome
  6. The saga orchestrator either approves or rejects theOrder

Take a tour of an example saga

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:

  • Lack of automatic rollback - a developer must design compensating transactions that explicitly undo changes made earlier in a saga rather than relying on the automatic rollback feature of ACID transactions

  • Lack of isolation (the “I” in ACID) - the lack of isolation means that there’s risk that the concurrent execution of multiple sagas and transactions can use data anomalies. consequently, a saga developer must typical use countermeasures, which are design techniques that implement isolation. Moreover, careful analysis is needed to select and correctly implement the countermeasures. SeeChapter 4/section 4.3 of my book Microservices Patterns for more information.

There are also the following issues to address:

  • In order to be reliable, a service must atomically update its databaseand 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.

  • A client that initiates the saga, which an asynchronous flow, using a synchronous request (e.g. HTTPPOST /orders) needs to be able to determine its outcome.There are several options, each with different trade-offs:

    • The service sends back a response once the saga completes, e.g. once it receives anOrderApproved orOrderRejected event.
    • The service sends back a response (e.g. containing theorderID) after initiating the saga and the client periodically polls (e.g.GET /orders/{orderID}) to determine the outcome
    • The service sends back a response (e.g. containing theorderID) after initiating the saga, and then sends an event (e.g. websocket, web hook, etc) to the client once the saga completes.

Related patterns

Learn more

Example code

The following examples implement the customers and orders example in different ways:


pattern  transaction management  sagas  service collaboration  implementing commands 


Copyright © 2025 Chris Richardson • All rights reserved • Supported byKong.

About Microservices.io

Microservices.io is brought to you byChris Richardson. Experienced software architect, author of POJOs in Action, the creator of the original CloudFoundry.com, and the author of Microservices patterns.

Microservices Patterns, 2nd edition

I am very excited to announce that the MEAP for the second edition of my book, Microservices Patterns is now available!

Learn more

ASK CHRIS

?

Got a question about microservices?

Fill inthis form. If I can, I'll write a blog post that answers your question.

NEED HELP?

I help organizations improve agility and competitiveness through better software architecture.

Learn more about myconsulting engagements, andtraining workshops.

PREMIUM CONTENT

Premium content now available for paid subscribers atpremium.microservices.io.

MICROSERVICES WORKSHOPS

Chris teachescomprehensive workshops for architects and developers that will enable your organization use microservices effectively.

Avoid the pitfalls of adopting microservices and learn essential topics, such as service decomposition and design and how to refactor a monolith to microservices.

Learn more

Remote consulting session

Got a specific microservice architecture-related question? For example:

  • Wondering whether your organization should adopt microservices?
  • Want to know how to migrate your monolith to microservices?
  • Facing a tricky microservice architecture design problem?

Consider signing up for atwo hour, highly focussed, consulting session.

ASSESS your architecture

Assess your application's microservice architecture and identify what needs to be improved.Engage Chris to conduct an architect review.

LEARN about microservices

Chris offers numerous other resources for learning the microservice architecture.

Get the book: Microservices Patterns

Read Chris Richardson's book:

Example microservices applications

Want to see an example? Check out Chris Richardson's example applications.See code

Virtual bootcamp: Distributed data patterns in a microservice architecture

My virtual bootcamp, distributed data patterns in a microservice architecture, is now open for enrollment!

It covers the key distributed data management patterns including Saga, API Composition, and CQRS.

It consists of video lectures, code labs, and a weekly ask-me-anything video conference repeated in multiple timezones.

The regular price is $395/person but use coupon OFFEFKCW to sign up for $95 (valid until Sept 30th, 2025). There are deeper discounts for buying multiple seats.

Learn more

Learn how to create a service template and microservice chassis

Take a look at myManning LiveProject that teaches you how to develop a service template and microservice chassis.

Signup for the newsletter
For Email Marketing you can trust.


BUILD microservices

Ready to start using the microservice architecture?

Consulting services

Engage Chris to create a microservices adoption roadmap and help you define your microservice architecture,


The Eventuate platform

Use theEventuate.io platform to tackle distributed data management challenges in your microservices architecture.

Eventuate is Chris's latest startup. It makes it easy to use the Saga pattern to manage transactions and the CQRS pattern to implement queries.


Join themicroservices google group


[8]ページ先頭

©2009-2025 Movatter.jp