0Pricing
Microservices Communication Patterns (Saga, Circuit Breaker) · Lekcja

Wyjaśnienie sagi choreograficznej

Proszę poznać podejście choreograficzne, w którym usługi komunikują się bezpośrednio za pomocą zdarzeń, bez centralnego koordynatora.

Wyjaśnienie sagi choreograficznej to bezpłatna lekcja Microservices Communication Patterns (Saga, Circuit Breaker) na CoddyKit. To lekcja 2 z 4. Możesz przeczytać całą lekcję poniżej za darmo — a potem ćwiczyć ją interaktywnie w przeglądarce z wbudowanym edytorem kodu i tutorem AI dostępnym 24/7. To część ścieżki edukacyjnej Microservices Communication Patterns (Saga, Circuit Breaker), a Twój postęp synchronizuje się między webem a aplikacją CoddyKit. Kurs Microservices Communication Patterns (Saga, Circuit Breaker) zawiera 4 lekcji w sumie.

Części tej lekcji nie zostały jeszcze przetłumaczone i są wyświetlane po angielsku.

Choreography Saga Intro

Welcome! In this lesson, we'll explore the Choreography Saga pattern. It's a way to manage complex business transactions that span multiple services in a decentralized way.

Unlike an orchestra with a conductor, choreography is like a dance where each dancer knows their part and reacts to others' movements.

Decentralized Event Flow

In a choreography saga, there's no central coordinator service. Instead, each service involved in the transaction publishes events and listens for events from other services.

  • Services react to events.
  • They perform their part of the transaction.
  • They publish new events to trigger the next step.

Order Processing Example

Let's use a common example: processing a customer order. This involves multiple steps across different services:

  • Order Service: Creates the order.
  • Payment Service: Handles payment.
  • Inventory Service: Updates stock.

How do these services coordinate without a central brain?

Step 1: Order Created Event

When a customer places an order, the Order Service starts the saga. It saves the order and then publishes an OrderCreatedEvent.

This event signals to other services that a new order is ready for processing.

public class OrderService {
  public static void processNewOrder(String orderId) {
    System.out.println("Order Service: Received new order " + orderId);
    System.out.println("Order Service: Saving order " + orderId + " to database...");
    // Imagine database interaction here
    System.out.println("Order Service: Order " + orderId + " saved.");
    System.out.println("Order Service: Publishing 'OrderCreatedEvent' for " + orderId);
  }

  public static void main(String[] args) {
    processNewOrder("ORD789"); // Simulate a new order coming in
  }
}

Step 2: Payment Service Reacts

The Payment Service is subscribed to OrderCreatedEvents. When it receives one, it processes the payment for that order.

After processing, it publishes either a PaymentProcessedEvent or a PaymentFailedEvent.

public class PaymentService {
  public static void handleOrderCreated(String orderId) {
    System.out.println("Payment Service: Received 'OrderCreatedEvent' for order " + orderId);
    System.out.println("Payment Service: Processing payment for " + orderId + "...");
    // Simulate payment gateway interaction
    boolean paymentSuccess = true; // For this example, assume success
    if (paymentSuccess) {
      System.out.println("Payment Service: Payment successful for " + orderId + ".");
      System.out.println("Payment Service: Publishing 'PaymentProcessedEvent' for " + orderId);
    } else {
      System.out.println("Payment Service: Payment failed for " + orderId + ".");
      System.out.println("Payment Service: Publishing 'PaymentFailedEvent' for " + orderId);
    }
  }

  public static void main(String[] args) {
    handleOrderCreated("ORD789"); // Simulate receiving an event
  }
}

Step 3: Inventory Service Updates

Next, the Inventory Service listens for PaymentProcessedEvents. Upon receiving one, it reduces the stock for the ordered items.

It then publishes an InventoryUpdatedEvent to indicate its task is complete.

public class InventoryService {
  public static void handlePaymentProcessed(String orderId) {
    System.out.println("Inventory Service: Received 'PaymentProcessedEvent' for order " + orderId);
    System.out.println("Inventory Service: Updating stock for order " + orderId + "...");
    // Simulate inventory database update
    System.out.println("Inventory Service: Stock updated for order " + orderId + ".");
    System.out.println("Inventory Service: Publishing 'InventoryUpdatedEvent' for " + orderId);
  }

  public static void main(String[] args) {
    handlePaymentProcessed("ORD789"); // Simulate receiving an event
  }
}

The Challenge of Failures

What happens if a step in this flow fails? For example, if the payment fails, we can't update inventory. We also need to undo any previous successful steps.

This is where compensation logic comes in. It's about reversing previously completed actions.

Compensation in Choreography

In a choreography saga, compensation also happens through events. If a service fails, it publishes a compensation event.

Other services listen for these compensation events and perform their own rollback actions.

Compensation Example: Payment Fails

Imagine the Payment Service fails and publishes a PaymentFailedEvent. The Order Service, which started the saga, listens for this event.

Upon receiving it, the Order Service updates the order status to 'Cancelled', effectively rolling back the transaction from its side.

public class OrderService {
  public static void handlePaymentFailed(String orderId) {
    System.out.println("Order Service: Received 'PaymentFailedEvent' for order " + orderId);
    System.out.println("Order Service: Initiating compensation for " + orderId + ".");
    // Change order status to 'Cancelled'
    System.out.println("Order Service: Updating order " + orderId + " status to 'Cancelled'.");
    // Could publish OrderCancelledEvent if other services need to know
  }

  public static void main(String[] args) {
    handlePaymentFailed("ORD789"); // Simulate receiving a compensation event
  }
}

Pros and Cons of Choreography

Choreography offers benefits but also presents challenges:

  • Pros: Highly decoupled services, no central point of failure, simpler to implement for simple flows.
  • Cons: Can be harder to monitor the overall transaction flow, complex compensation logic, potential for 'event storms' if not designed carefully.

Choreography Check

Consider a choreography saga where an 'OrderConfirmedEvent' is published. Which statement accurately describes how the next step is initiated?

Recap: Choreography Saga

You've learned about the Choreography Saga pattern:

  • It's a decentralized approach for distributed transactions.
  • Services communicate by publishing and subscribing to events.
  • There's no central coordinator; each service knows its role.
  • Compensation for failures is also handled via events, allowing services to roll back their actions.

This pattern promotes loose coupling but requires careful design for monitoring and compensation.

Często zadawane pytania

Czy lekcja „Wyjaśnienie sagi choreograficznej” jest bezpłatna?

Tak — pełny tekst „Wyjaśnienie sagi choreograficznej” jest dostępny za darmo tutaj w sieci. Aby ćwiczyć ją interaktywnie (wbudowany edytor kodu i tutor AI dostępny 24/7) i odblokować resztę kursu Microservices Communication Patterns (Saga, Circuit Breaker), przejdź na CoddyKit PRO. Kurs Microservices Communication Patterns (Saga, Circuit Breaker) zawiera 4 lekcji w sumie.

Co nauczysz się w „Wyjaśnienie sagi choreograficznej”?

Proszę poznać podejście choreograficzne, w którym usługi komunikują się bezpośrednio za pomocą zdarzeń, bez centralnego koordynatora. Ćwiczysz Microservices Communication Patterns (Saga, Circuit Breaker) z praktycznym kodem, który uruchamiasz bezpośrednio w przeglądarce, a tutor AI dostępny 24/7 odpowiada na Twoje pytania podczas pracy nad lekcją.

Czy potrzebuję doświadczenia, aby zacząć Microservices Communication Patterns (Saga, Circuit Breaker)?

Nie wymagamy żadnego doświadczenia. Microservices Communication Patterns (Saga, Circuit Breaker) w CoddyKit jest strukturyzowany dla początkujących i zaawansowanych użytkowników, więc możesz zacząć tutaj lub od początku i uczyć się w swoim tempie. To lekcja 2 z 4.

Ile czasu zajmuje lekcja „Wyjaśnienie sagi choreograficznej”?

Większość lekcji CoddyKit trwa około 5–10 minut. Każda lekcja to mały, interaktywny krok, dzięki czemu robisz systematyczne postępy i zawsze wracasz dokładnie do tego samego miejsca — na webie i w aplikacji.

Czy mogę pisać i uruchamiać kod w tej lekcji Microservices Communication Patterns (Saga, Circuit Breaker)?

Tak. Każda lekcja Microservices Communication Patterns (Saga, Circuit Breaker) zawiera wbudowany edytor kodu, więc piszesz i uruchamiasz prawdziwy kod bezpośrednio w przeglądarce i od razu otrzymujesz sprzężenie zwrotne od AI — bez konfiguracji na komputerze.

Wszystkie lekcje w tym kursie

  1. Czym jest wzorzec Saga?
  2. Wyjaśnienie sagi choreograficznej
  3. Wyjaśnienie sagi orkiestracyjnej
  4. Wybór między choreografią a orkiestracją
← Powrót do Microservices Communication Patterns (Saga, Circuit Breaker)