- Notifications
You must be signed in to change notification settings - Fork431
Apache ServiceComb Pack is an eventually data consistency solution for micro-service applications. ServiceComb Pack currently provides TCC and Saga distributed transaction co-ordination solutions by using Alpha as a transaction coordinator and Omega as an transaction agent .
License
apache/servicecomb-pack
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Pack |中文





Apache ServiceComb Pack is an eventually data consistency solution for micro-service applications.
Notice to contributors: this project is not active due to lack of maintainers. If you are interested in this project, please cantact us and we will help you to be a committer.
Notice to users: this project is not active due to lack of maintainers. Before we find enough resources, do not use this project if possible.
- 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.
ServiceComb Pack is composed ofalpha andomega.
- 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.
In this way, we can implement different coordination protocols, such as saga and TCC. SeeServiceComb Pack Design for details.
Now we have different lanaguage implementation of Omega
- Go lang version of Omega herehttps://github.com/jeremyxu2010/matrix-saga-go
- C# version of Omega herehttps://github.com/OpenSagas-csharp/servicecomb-saga-csharp
- For ServiceComb Java Chassis application, please seeBooking Demo for details.
- For Spring applications, please seeBooking Demo for details.
- For Dubbo applications, please seeDubbo Demo for details.
- For TCC with Spring application, please seeTcc Demo for details.
- To debug the applications, please seeSpring Demo Debugging for details.
- Build the source code and run the tests
$ mvn clean install
- Build the source demo docker images and run the accept tests
$ mvn clean install -Pdemo
- Build the source code and docker images without running tests, the docker profile will be activated if the maven detects the docker installation.
$ mvn clean install -DskipTests=true -Pdemo
- Build the release kit for distribution without running the tests, then you can find the release kits in the distribution/target directory.
$ mvn clean install -DskipTests=true -Prelease
How to build and use can refer toUser Guide.
Get released version:
Get snapshot version:
- We publish the snapshot version to Apache nexus repo, please add below repositories into your pom.xml.
<repositories> <repository> <releases /> <snapshots> <enabled>true</enabled> </snapshots> <id>repo.apache.snapshot</id> <url>https://repository.apache.org/content/repositories/snapshots/</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <releases /> <snapshots> <enabled>true</enabled> </snapshots> <id>repo.apache.snapshot</id> <url>https://repository.apache.org/content/repositories/snapshots/</url> </pluginRepository> </pluginRepositories>
SeePull Request Guide for details.
Licensed under anApache 2.0 license.
This distribution includes cryptographic software. The country in which you currently reside may have restrictions on the import, possession, use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check your country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. Seehttp://www.wassenaar.org/ for more information.
The Apache Software Foundation has classified this software as Export Commodity Control Number (ECCN) 5D002, which includes information security software using or performing cryptographic functions with asymmetric algorithms. The form and manner of this Apache Software Foundation distribution makes it eligible for export under the "publicly available" Section 742.15(b) exemption (see the BIS Export Administration Regulations, Section 742.15(b)) for both object code and source code.
The following provides more details on the included cryptographic software:
- Omega/Alpha Transport can be configured use https
About
Apache ServiceComb Pack is an eventually data consistency solution for micro-service applications. ServiceComb Pack currently provides TCC and Saga distributed transaction co-ordination solutions by using Alpha as a transaction coordinator and Omega as an transaction agent .
Topics
Resources
License
Code of conduct
Contributing
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.