# light-saga-4j **Repository Path**: mirrors_networknt/light-saga-4j ## Basic Information - **Project Name**: light-saga-4j - **Description**: A saga implementation to manage distributed transaction across multiple microservices - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-01-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # light-saga-4j A saga implementation to manage distributed transaction across multiple microservices [Stack Overflow](https://stackoverflow.com/questions/tagged/light-4j) | [Google Group](https://groups.google.com/forum/#!forum/light-4j) | [Gitter Chat](https://gitter.im/networknt/light-4j) | [Subreddit](https://www.reddit.com/r/lightapi/) | [Youtube Channel](https://www.youtube.com/channel/UCHCRMWJVXw8iB7zKxF55Byw) | [Documentation](https://doc.networknt.com/style/light-saga-4j/) | [Contribution Guide](https://doc.networknt.com/contribute/) | ## Introduction One big challenge with using the microservice architecture is that developers must deal with the additional complexity of creating a distributed system. Developers must use an inter-process communication mechanism. Implementing use cases that span multiple services requires the use of unfamiliar techniques. Saga is a type of Compensating Transaction pattern, which provides a simple way to help users solve the data consistency problems encountered in micro-service applications. ## Prerequisites You will need: 1. [JDK 1.8+][jdk] 2. [Maven 3.x][maven] 3. [Kafka 0.11+][kafka] 4. [Docker][docker] 5. [MySQL][mysql] 6. [Docker compose(optional)][docker_compose] ## Project module: --saga-core: Base components and interface to saga framework; Define saga basic command, event and message; --saga-framework: Saga framework implementation. Define saga participant, orchestration, and message repository; --saga-dsl: Base saga definition which includes saga steps definition, saga execution state, etc... --order-service: End-to-end integration test module for saga framework. --saga-cdc-mysql-connector: Base components for mysql to kafka binlog data transfer. --saga-cdc-service-mysql: cdc (capture data change) service for mysql to kafka