tx-lcn icon indicating copy to clipboard operation
tx-lcn copied to clipboard

LCN分布式事务框架v3.0

Results 5 tx-lcn issues
Sort by recently updated
recently updated
newest added

问题1: 1,开头就说Lock资源,但是读完整个文档,也不知道到底lock了什么。 2,如果没有lock资源,如果部分服务commit成功,部分失败,无法保证其他代码对该资源的修改。即使人工干预也无法补偿。如sql。update t_test name = 2 where age > 20; 当其他代码修改了age属性,人工也无法补偿。

spring 使用@EnableScheduling后lcn事务管理器注册不上?

高并发场景,大量连接未真正释放,跟xa协议一样,浪费资源,能不能参考阿里的gts,把这个问题解决了,他们是在本地事务提交前把原始数据记log,然后真正释放资源,需要回滚时用记录的log恢复数据。只是一个建议

Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'jdbcTransactionRecoverRepository': Unsatisfied dependency expressed through field 'compensateDataSource'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'compensateDataSource': Injection of resource dependencies failed;...

我同时使用mybatis和hibernate,hibernate事务并没有回归