# ServiceComb-Saga **Repository Path**: xxtan/ServiceComb-Saga ## Basic Information - **Project Name**: ServiceComb-Saga - **Description**: Apache ServiceComb (incubating) Saga 是一个微服务应用的数据最终一致性解决方案。相对于TCC而言,在try阶段,Saga会直接提交事务,后续rollback阶段则通过反向的补偿操作来完成。 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 21 - **Created**: 2020-06-09 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Pack | [中文](README_ZH.md) [![Build Status](https://travis-ci.org/apache/servicecomb-pack.svg?branch=master)](https://travis-ci.org/apache/servicecomb-pack?branch=master) [![Coverage Status](https://coveralls.io/repos/github/apache/servicecomb-pack/badge.svg?branch=master)](https://coveralls.io/github/apache/servicecomb-pack?branch=master)[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.servicecomb.pack/pack/badge.svg)](http://search.maven.org/#search%7Cga%7C1%7Corg.apache.servicecomb.pack) [![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html) [![Gitter](https://img.shields.io/badge/ServiceComb-Gitter-ff69b4.svg)](https://gitter.im/ServiceCombUsers/Saga) Apache ServiceComb Pack is an eventually data consistency solution for micro-service applications. ## Features * High availability. The coordinator is stateless and thus can have multiple instances. * High reliability. All transaction events are stored in database permanently. * High performance. Transaction events are reported to coordinator via gRPC and transaction payloads are serialized/deserialized by Kyro. * Low invasion. All you need to do is add 2-3 annotations and the corresponding compensate methods. * Easy to deploy. All components can boot via docker. * Support both forward(retry) and backward(compensate) recovery. * Easy to extend other coordination protocol which is based on the Pack, now we have Saga and TCC support out of box. ## Architecture ServiceComb Pack is composed of **alpha** and **omega**. * The alpha plays as the coordinator. It is responsible for the management of transactions. * The omega plays as an agent inside the micro-service. It intercepts incoming/outgoing requests and reports transaction events to alpha. The following diagram shows the relationships among alpha, omega and services. ![Pack Architecture](docs/static_files/pack.png) In this way, we can implement different coordination protocols, such as saga and TCC. See [ServiceComb Pack Design](docs/design.md) for details. Now we have different lanaguage implementation of Omega * Go lang version of Omega here https://github.com/jeremyxu2010/matrix-saga-go * C# version of Omega here https://github.com/OpenSagas-csharp/servicecomb-saga-csharp ## Get Started * For ServiceComb Java Chassis application, please see [Booking Demo](saga-demo/saga-servicecomb-demo/README.md) for details. * For Spring applications, please see [Booking Demo](saga-demo/saga-spring-demo/README.md) for details. * For Dubbo applications, please see [Dubbo Demo](saga-demo/saga-dubbo-demo/README.md) for details. * For TCC with Spring application, please see [Tcc Demo](saga-demo/tcc-spring-demo/README.md) for details. * To debug the applications, please see [Spring Demo Debugging](saga-demo/saga-spring-demo#debugging) for details. ## Build and Run the tests from source * Build the source code and run the tests ```bash $ mvn clean install ``` * Build the source demo docker images and run the accept tests ```bash $ mvn clean install -Pdemo,docker ``` * Build the source code and docker images without running tests ```bash $ mvn clean install -DskipTests=true -Pdemo,docker ``` * Current ServiceComb Pack code supports Spring Boot 1.x and Spring Boot 2.x at the same time, saga uses Spring Boot 2.x by default, you can use *-Pspring-boot-1* to switch Spring Boot version to 2.x. Since Spring Boot supports JDK9 since 2.x, if you want to build and run test the Saga with JDK9 or JDK10, please don't use the spring-boot-1 profile. ```bash $ mvn clean install -Pdemo,docker,spring-boot-1 ``` ## User Guide How to build and use can refer to [User Guide](docs/user_guide.md). ## Get The Latest Version Get released version: * [Download Pack](http://servicecomb.apache.org/release/saga-downloads/) Get snapshot version: * We publish the snapshot version to Apache nexus repo, please add below repositories into your pom.xml. ``` true repo.apache.snapshot https://repository.apache.org/content/repositories/snapshots/ true repo.apache.snapshot https://repository.apache.org/content/repositories/snapshots/ ``` ## [FAQ](FAQ.md) ## Contact Us * [issues](https://issues.apache.org/jira/browse/SCB) * [gitter](https://gitter.im/ServiceCombUsers/Saga) * mailing list: [subscribe](mailto:dev-subscribe@servicecomb.apache.org) [view](https://lists.apache.org/list.html?dev@servicecomb.apache.org) ## Contributing See [Pull Request Guide](http://servicecomb.apache.org/developers/submit-codes/) for details. ## Stargazers over time [![Stargazers over time](https://starcharts.herokuapp.com/apache/servicecomb-pack.svg)](https://starcharts.herokuapp.com/apache/servicecomb-pack) ## License Licensed under an [Apache 2.0 license](https://github.com/apache/servicecomb-saga/blob/master/LICENSE).