其他分享
首页 > 其他分享> > 分库分表ShardingSphere<三> _ 分布式事务

分库分表ShardingSphere<三> _ 分布式事务

作者:互联网

目录

一、分布式事务

1. LOCAL事务

2. XA事务

3. BASE事务(柔性事务)

二、示例

1. 依赖jar包

2. 配置XA事务

3. 使用XA事务

三、参考资料


一、分布式事务

        ShardingSphere提供三种事务类型:LOCAL(默认)、XA 和 BASE。见枚举类org.apache.shardingsphere.transaction.core.TransactionType。

1. LOCAL事务

支持:单库事务(可分表);因逻辑异常导致的跨库事务(如:同一事务中,跨两个库更新。更新完毕后,抛出空指针,则两个库都能够回滚)

不支持:因网络、硬件异常导致的跨库事务。如:同一事务中,跨两个库更新,更新完毕后、未提交之前,第一个库宕机,则只有第二个库数据提交,且无法回滚。

2. XA事务

        Shardingsphere整合Atomikos对XA分布式事务的支持。XA事务,属于两阶段提交事务。如下图所示。

支持:跨库事务;两阶段提交保证操作的原子性和数据的强一致性;服务宕机重启后,提交/回滚中的事务可自动恢复;支持XA 和非XA的连接池

不支持:服务宕机后,在其它机器上恢复提交/回滚中的数据

1):两阶段提交

AP(Application Program _ 应用程序):用于定义事务边界(即定义事务的开始和结束),并且在事务边界内对资源进行操作。
RM(Resource Manager _ 资源管理器):如数据库、文件系统等,并提供访问资源的方式。
TM(Transaction Manager _ 事务管理器):事务协调者,负责分配事务唯一标识,监控事务的执行进度,并负责事务的提交、回滚等。 

XA二阶段提交:

2):MySQL的XA事务状态

3. BASE事务(柔性事务)

        BASE事务,属于柔性事务,数据最终一致性。如下图所示。ShardingSphere集成了SEATA作为柔性事务的使用方案。

支持:跨库事务;支持RC隔离级别;undo快照进行事务回滚;服务宕机后的,自动恢复提交中的事务

不支持:不支持除RC之外的隔离级别

二、示例

1. 依赖jar包

<dependency>
    <groupId>org.apache.shardingsphere</groupId>
    <artifactId>sharding-transaction-xa-core</artifactId>
    <version>4.1.1</version>
</dependency>

2. 配置XA事务

package com.common.instance.test.config.transaction;

import org.springframework.context.annotation.Bean;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.datasource.DataSourceTransactionManager;
import org.springframework.stereotype.Component;
import org.springframework.transaction.PlatformTransactionManager;
import org.springframework.transaction.annotation.EnableTransactionManagement;

import javax.sql.DataSource;

/**
 * @description 分布式事务XA配置
 * @author tcm
 * @version 1.0.0
 * @date 2021/12/15 16:44
 **/
@Component
@EnableTransactionManagement
public class ShardingTransactionXAConfig {

    // TM配置
    @Bean
    public PlatformTransactionManager txManager(final DataSource dataSource) {
        return new DataSourceTransactionManager(dataSource);
    }

    // RM配置
    @Bean
    public JdbcTemplate jdbcTemplate(final DataSource dataSource) {
        return new JdbcTemplate(dataSource);
    }

}

3. 使用XA事务

注意:@Transactional与@ShardingTransactionType一起使用,而需要设置使用事务类型,参考枚举类org.apache.shardingsphere.transaction.core.TransactionType。

@Transactional
@ShardingTransactionType(TransactionType.XA)
@Override
public void testTransactionXA() {
    // 获取分布式主键
    String tabId = getRedisId();

    // 组装对象
    WcPendantTabDetail wcPendantTabDetail = getWcPendantTabDetail(tabId);
    WcPendantTabExtend wcPendantTabExtend = getWcPendantTabExtend(wcPendantTabDetail);

    // 保存DB
    int detail = wcPendantTabDetailDao.insert(wcPendantTabDetail);
    LogUtil.info(String.format("insert wcPendantTabDetail: %s", detail));

    Long.parseLong("adfg");

    int extend = wcPendantTabExtendDao.insert(wcPendantTabExtend);
    LogUtil.info(String.format("insert wcPendantTabExtend: %s", extend));
}

三、参考资料

XA 事务 :: ShardingSphere

ShardingSphere的分布式事务 - 天宇轩-王 - 博客园

sharding-jdbc事务解读_yanyan19880509的专栏-CSDN博客_shardingjdbc 事务

Shardingsphere整合Atomikos对XA分布式事务的支持(2)_ShardingSphere官微-CSDN博客

atomikos分布式事务_Shardingsphere整合Atomikos对XA分布式事务的支持(1)_孔钧的博客-CSDN博客

atomikos分布式事务_Shardingsphere整合Atomikos对XA分布式事务的支持(1)_孔钧的博客-CSDN博客

标签:事务,分库,ShardingSphere,XA,回滚,提交,分表,RM,分布式
来源: https://blog.csdn.net/m0_37543627/article/details/122043057