"LCN并不生产事务,LCN只是本地事务的协调者"
LCN分布式事务框架的核心功能是对本地事务的协调控制,框架本身并不创建事务,只是对本地事务做协调控制。因此该框架与其他第三方的框架兼容性强,支持所有的关系型数据库事务,支持多数据源,支持与第三方数据库框架一块使用(例如 sharding-jdbc),在使用框架的时候只需要添加分布式事务的注解即可,对业务的侵入性低。LCN框架主要是为微服务框架提供分布式事务的支持,在微服务框架上做了进一步的事务机制优化,在一些负载场景上LCN事务机制要比本地事务机制的性能更好,4.0以后框架开方了插件机制可以让更多的第三方框架支持进来。
- 支持各种基于spring的db框架
- 兼容SpringCloud、Dubbo、motan
- 使用简单,低依赖,代码完全开源
- 基于切面的强一致性事务框架
- 高可用,模块可以依赖RPC模块做集群化,TxManager也可以做集群化
- 支持本地事务和分布式事务共存
- 支持事务补偿机制,增加事务补偿决策提醒
- 添加插件拓展机制
transaction-dubbo LCN dubbo rpc框架扩展支持
transaction-springcloud LCN springcloud rpc框架扩展支持
transaction-motan LCN motan rpc框架扩展支持
tx-client 是LCN核心tx模块端控制框架
tx-manager 是LCN 分布式事务协调器
tx-plugins-db 是LCN 对关系型数据库的插件支持
分布式事务发起方:
@Override
@TxTransaction(isStart=true)
@Transactional
public boolean hello() {
//本地调用
testDao.save();
//远程调用方
boolean res = test2Service.test();
//模拟异常
int v = 100/0;
return true;
}
分布式事务被调用方(test2Service的业务实现类)
@Override
@Transactional
@TxTransaction
public boolean test() {
//本地调用
testDao.save();
return true;
}
如上代码执行完成以后两个模块都将回滚事务。
说明:在使用LCN分布式事务时,只需要将事务的开始方法添加@TxTransaction(isStart=true)
注解即可,在参与方添加@TxTransaction
或者实现ITxTransaction
接口即可。详细见demo教程
@TxTransaction注解是分布式事务的标示。
若存在业务方法:a->b b->c b->d,那么开启分布式事务注解的话,需要在各个模块方法上添加@TxTransaction即可。
@TxTransaction(isStart=true)
@Transactional
public void a(){
b();
}
@TxTransaction
public void b(){
c();
d();
}
@TxTransaction
public void c(){}
@TxTransaction
public void d(){}
<dependency>
<groupId>com.codingapi</groupId>
<artifactId>tx-client</artifactId>
<version>${lcn.last.version}</version>
</dependency>
<dependency>
<groupId>com.codingapi</groupId>
<artifactId>tx-plugins-db</artifactId>
<version>${lcn.last.version}</version>
</dependency>
<dependency>
<groupId>com.codingapi</groupId>
<artifactId>transaction-dubbo</artifactId>
<version>${lcn.last.version}</version>
</dependency>
<dependency>
<groupId>com.codingapi</groupId>
<artifactId>transaction-motan</artifactId>
<version>${lcn.last.version}</version>
</dependency>
<dependency>
<groupId>com.codingapi</groupId>
<artifactId>transaction-springcloud</artifactId>
<version>${lcn.last.version}</version>
</dependency>
依赖gradle等形式,见中心库
http://mvnrepository.com/search?q=codingapi
每个demo下有区分为 jdbc/hibernate/mybatis不同框架的版本demo
- 将基于springboot 2.0研发,将替换groupId传递机制,由sleuth机制处理。(https://cloud.spring.io/spring-cloud-sleuth/2.0.x/single/spring-cloud-sleuth.html)
- 将抽离LCN封装业务,提出业务接口层与通讯层,将可支持自定义分布式事务模式与通讯模式。
- 将支持LCN TXC TCC 三种事务模式,且可混合支持。
- 优化线程等待机制,提高吞吐量。
- 将提供更加完备的官方文档,类似sleuth文档形式。
技术交流群:554855843