the first relase
doc: add release 0.1.0 changes note (#169)

doc: add release 0.0.1-rc1 changes note
3 files changed
tree: 75ac23d369aa0dfde2bc7c60b3a05df1965e34bb
  1. .github/
  2. changes/
  3. cmd/
  4. conf/
  5. pkg/
  6. sample/
  7. test/
  8. testdata/
  9. .gitignore
  10. .golangci.yml
  11. .licenserc.yaml
  12. .pre-commit-config.yaml
  13. CHANGELOG.md
  14. CONTRIBUTING.md
  15. CONTRIBUTING_CN.md
  16. coverage.txt
  17. go.mod
  18. go.sum
  19. goimports.sh
  20. LICENSE
  21. makefile
  22. NOTICE
  23. README.md
  24. README_ZH.md
  25. VERSION
README.md

Seata-go: Simple Extensible Autonomous Transaction Architecture(Go version)

Build Status license

简体中文 ZH

What is seata-go?

Seata is a very mature distributed transaction framework, and is the de facto standard platform for distributed transaction technology in the Java field. Seata-go is the implementation version of go language in Seata multilingual ecosystem, which realizes the interoperability between Java and Go, so that Go developers can also use seata-go to realize distributed transactions. Please visit the official website of Seata to view the quick start and documentation.

The principle of seata-go is consistent with that of Seata-java, which is composed of TM, RM and TC. The functions of TC reuse Java, and the functions of TM and RM will be aligned with Seata-java later. The overall process is as follows:

TODO list

  • [x] TCC
  • [ ] XA
  • [ ] AT
  • [ ] SAGA
  • [ ] TM
  • [x] RPC communication
  • [ ] Transaction anti suspension
  • [ ] Null compensation
  • [ ] Configuration center
  • [ ] Registration Center
  • [ ] Metric monitoring
  • [x] Examples

How to run?

  1. Start the seata-server service with the docker file under the sample/dockercomposer folder

    cd sample/dockercompose
    docker-compose -f docker-compose.yml up -d seata-server
    
  2. Just execute the main function under samples/ in the root directory

How to join us?

Seata-go is currently in the construction stage. Welcome colleagues in the industry to join the group and work with us to promote the construction of seata-go! If you want to contribute code to seata-go, you can refer to the code contribution Specification document to understand the specifications of the community, or you can join our community DingTalk group: 33069364 and communicate together!

Licence

Seata-go uses Apache license version 2.0. Please refer to the license file for more information.