This project is part of Eventuate, which is a microservices collaboration platform.
Spring/Micronaut |
|
Quarkus |
The Eventuate Tram Sagas framework is a saga framework for Java microservices that use JDBC/JPA and Spring Boot/Micronaut.
A major challenge when implementing business applications using the microservice architecture is maintaining data consistency across services. Each service has its own private data and you can’t use distributed transactions. The solution is to use sagas.
A saga maintains consistency across multiple microservices by using a series of a local transactions that are coordinated using messages or events. A saga consists of a series of steps. Each step consists of either transaction, a compensating transaction or both. Each transaction is the invocation of a saga participant using a command message. A saga executes the forward transactions sequentially. If one of them fails then the saga executes the compensating transactions in reverse order to rollback the saga.
Eventuate Tram Sagas is a saga orchestration framework for Spring Boot, Micronaut and Quarkus (using Eventuate Tram for Quarkus) applications. It is built on the Eventuate Tram framework, which enables an application to atomically update a database and publish a message without using JTA. Eventuate Tram Sagas is described in more detail in my book Microservice Patterns.
Presentations, videos and articles:
Example applications:
The Customers and Orders uses a saga to create an Order
in the Order Service
and reserve credit in the Customer Service
.
The CreateOrderSaga
consists of the following three steps:
-
The
CreateOrderSaga
is instantiated after theOrder
is created. Consequently, the first step is simply a compensating transaction, which is executed in the credit cannot be reserved to reject the order. -
Requests the
CustomerService
to reserve credit for the order. If the reservation is success, the next step is executed. Otherwise, the compensating transactions are executed to roll back the saga. -
Approves the order, if the credit is reserved.
Here is part of the definition of CreateOrderSaga
.
public class CreateOrderSaga implements SimpleSaga<CreateOrderSagaData> {
private SagaDefinition<CreateOrderSagaData> sagaDefinition =
step()
.withCompensation(this::reject)
.step()
.invokeParticipant(this::reserveCredit)
.step()
.invokeParticipant(this::approve)
.build();
@Override
public SagaDefinition<CreateOrderSagaData> getSagaDefinition() {
return this.sagaDefinition;
}
private CommandWithDestination reserveCredit(CreateOrderSagaData data) {
long orderId = data.getOrderId();
Long customerId = data.getOrderDetails().getCustomerId();
Money orderTotal = data.getOrderDetails().getOrderTotal();
return send(new ReserveCreditCommand(customerId, orderId, orderTotal))
.to("customerService")
.build();
...
The reserveCredit()
creates a message to send to the Customer Service
to reserve credit.
The OrderService
creates the saga:
public class OrderService {
@Autowired
private SagaManager<CreateOrderSagaData> createOrderSagaManager;
@Autowired
private OrderRepository orderRepository;
@Transactional
public Order createOrder(OrderDetails orderDetails) {
ResultWithEvents<Order> oe = Order.createOrder(orderDetails);
Order order = oe.result;
orderRepository.save(order);
CreateOrderSagaData data = new CreateOrderSagaData(order.getId(), orderDetails);
createOrderSagaManager.create(data, Order.class, order.getId());
return order;
}
}
Here is the CustomerCommandHandler
, which handles the command to reserve credit:
public class CustomerCommandHandler {
@Autowired
private CustomerRepository customerRepository;
public CommandHandlers commandHandlerDefinitions() {
return SagaCommandHandlersBuilder
.fromChannel("customerService")
.onMessage(ReserveCreditCommand.class, this::reserveCredit)
.build();
}
public Message reserveCredit(CommandMessage<ReserveCreditCommand> cm) {
...
}
...
The artifacts are in JCenter. The latest version is:
Release |
|
RC |
If you are writing a Saga orchestrator add this dependency to your project:
-
io.eventuate.tram.sagas:eventuate-tram-sagas-orchestration-simple-dsl:$eventuateTramSagasVersion
If you are writing a saga participant then add this dependency:
-
io.eventuate.tram.sagas:eventuate-jpa-sagas-framework:$eventuateTramSagasVersion
You must also include one of the Eventuate Tram 'implementation' artifacts:
-
io.eventuate.tram.core:eventuate-tram-jdbc-kafka:$eventuateTramVersion
- JDBC database and Apache Kafka message broker -
io.eventuate.tram.core:eventuate-tram-in-memory:$eventuateTramVersion
- In-memory JDBC database and in-memory messaging for testing
In addition to a database and message broker, you will need to run the Eventuate Tram CDC service. It reads messages and events inserted into the database and publishes them to Apache Kafka. It is written using Spring Boot. The easiest way to run this service during development is to use Docker Compose. The Eventuate Tram Code Basic examples project has an example docker-compose.yml file.
Contributions are welcome.
Please sign a contributor license agreement.