|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements. See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
- # seata-go: 简单的可扩展自主事务架构(Go版本)
-
- [](https://github.com/apache/incubator-seata-go/actions/workflows/license.yml)
- [](https://www.apache.org/licenses/LICENSE-2.0.html)
-
- [English US](./README.md)
-
- ## 什么是 seata-go?
-
- Apache Seata(incubating) 是一个非常成熟的分布式事务框架,在 Java 领域是事实上的分布式事务技术标准平台。Seata-go 是 seata 多语言生态中的 Go 语言实现版本,实现了 Java 和 Go 之间的互通,让 Go 开发者也能使用 seata-go 来实现分布式事务。请访问[Seata 官网](https://seata.apache.org/zh-cn/)查看快速开始和文档。
-
- Seata-go 的原理和 Seata-java 保持一致,都是由 TM、RM 和 TC 组成,其中 TC 的功能复用 Java 的,TM 和 RM 功能后面会和 Seata-java 对齐,整体流程如下:
-
- 
-
- ## 待办事项
-
- - [x] TCC
- - [x] XA
- - [x] AT
- - [x] Insert SQL
- - [x] Delete SQL
- - [x] Insert on update SQL
- - [x] Multi update SQL
- - [x] Multi delete SQL
- - [x] Select for update SQL
- - [x] Update SQL
- - [ ] SAGA
- - [x] TM
- - [x] RPC 通信
- - [x] 事务防悬挂
- - [x] 手动方式
- - [x] 代理数据源方式
- - [x] 空补偿
- - [x] 手动方式
- - [x] 代理数据源方式
- - [x] 配置中心
- - [x] 配置文件
- - [x] 注册中心
- - [ ] Metric 监控
- - [x] 压缩算法
- - [x] Sample 例子
-
-
- ## 如何运行项目?
-
- 关于如何使用和集成 seata-go 的示例,可以参考 [apache/seata-go-samples](https://github.com/apache/incubator-seata-go-samples)
-
-
- ## 如何给Seata-go贡献代码?
-
- Seata-go 目前正在建设阶段,欢迎行业同仁入群参与其中,与我们一起推动 seata-go 的建设!如果你想给 seata-go 贡献代码,可以参考 **[代码贡献规范](./CONTRIBUTING.md)** 文档来了解社区的规范,也可以加入我们的社区钉钉群:33069364,一起沟通交流!
-
- ## 协议
-
- Seata-go 使用 Apache 许可证2.0版本,请参阅 LICENSE 文件了解更多。
|