Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Seata | 23,802 | 13 | 4 days ago | 20 | July 10, 2022 | 794 | apache-2.0 | Java | ||
:fire: Seata is an easy-to-use, high-performance, open source distributed transaction solution. | ||||||||||
Shardingsphere | 18,460 | 8 | 4 hours ago | 7 | June 04, 2020 | 666 | apache-2.0 | Java | ||
Ecosystem to transform any database into a distributed database system, and enhance it with sharding, elastic scaling, encryption features & more | ||||||||||
Dtm | 8,753 | 4 | 7 hours ago | 74 | September 05, 2022 | 32 | bsd-3-clause | Go | ||
A distributed transaction framework, supports workflow, saga, tcc, xa, 2-phase message, outbox patterns, supports many languages. | ||||||||||
Bytetcc | 2,778 | 5 | 1 | a year ago | 83 | March 07, 2022 | 100 | lgpl-3.0 | Java | |
ByteTCC is a distributed transaction manager based on the TCC(Try/Confirm/Cancel) mechanism. It’s compatible with the JTA specification. User guide: https://github.com/liuyangming/ByteTCC/wiki | ||||||||||
Easytransaction | 2,151 | 2 | 8 | 3 years ago | 11 | December 21, 2019 | 45 | apache-2.0 | Java | |
A distribute transaction solution(分布式事务) unified the usage of TCC , SAGA ,FMT (seata/fescar AutoCompensation), reliable message, compensate and so on; | ||||||||||
Radon | 1,466 | 2 years ago | 17 | February 24, 2021 | 2 | gpl-3.0 | Go | |||
RadonDB is an open source, cloud-native MySQL database for building global, scalable cloud services | ||||||||||
Seata Go | 1,322 | 5 hours ago | 32 | apache-2.0 | Go | |||||
Go Implementation For Seata | ||||||||||
Jdonframework | 877 | 15 | 3 years ago | 5 | September 22, 2018 | 3 | apache-2.0 | Java | ||
Domain-Driven-Design Pub/Sub Domain-Events framework | ||||||||||
Sage | 752 | 2 | 8 months ago | 10 | July 02, 2020 | 17 | mit | Elixir | ||
A dependency-free tool to run distributed transactions in Elixir, inspired by Sagas pattern. | ||||||||||
Bytejta | 212 | 7 | 3 | a year ago | 56 | March 22, 2021 | 10 | lgpl-3.0 | Java | |
ByteJTA is a distributed transaction manager based on the XA/2PC mechanism. It’s compatible with the JTA specification. User guide: https://github.com/liuyangming/ByteJTA/wiki |
A distributed transaction solution with high performance and ease of use for microservices architecture.
Let's imagine a traditional monolithic application. Its business is built up with 3 modules. They use a single local data source.
Naturally, data consistency will be guaranteed by the local transaction.
Things have changed in a microservices architecture. The 3 modules mentioned above are designed to be 3 services on top of 3 different data sources (Pattern: Database per service). Data consistency within every single service is naturally guaranteed by the local transaction.
But how about the whole business logic scope?
Seata is just a solution to the problem mentioned above.
Firstly, how to define a Distributed Transaction?
We say, a Distributed Transaction is a Global Transaction which is made up with a batch of Branch Transaction, and normally Branch Transaction is just Local Transaction.
There are three roles in Seata Framework:
A typical lifecycle of Seata managed distributed transaction:
For more details about principle and design, please go to Seata wiki page.
XTS: Extended Transaction Service. Ant Financial middleware team developed the distributed transaction middleware since 2007, which is widely used in Ant Financial and solves the problems of data consistency across databases and services.
DTX: Distributed Transaction Extended. Since 2013, XTS has been published on the Ant Financial Cloud, with the name of DTX .
<seata.version>1.6.1</seata.version>
<dependency>
<groupId>io.seata</groupId>
<artifactId>seata-all</artifactId>
<version>${seata.version}</version>
</dependency>
<!--If your project base on `Spring Boot`, you can directly use the following dependencies-->
<!--Notice: `seata-spring-boot-starter` has included `seata-all` dependency-->
<dependency>
<groupId>io.seata</groupId>
<artifactId>seata-spring-boot-starter</artifactId>
<version>${seata.version}</version>
</dependency>
You can view the full documentation from Seata Official Website: Seata Website page.
Please follow the template for reporting any issues.
Contributors are welcomed to join the Seata project. Please check CONTRIBUTING andCONTRIBUTING-CNabout how to contribute to this project.
seata
to gather all Seata relevant projectsThis project exists thanks to all the people who contribute. [Contributors].
Seata is under the Apache 2.0 license. See the LICENSE file for details.
These are only part of the companies using Seata, for reference only. If you are using Seata, please add your company here to tell us your scenario to make Seata better.