下载地址
file.conf 配置文件修改
- service 修改事务组名称,符合 *.tx_group 格式
service {
#transaction service group mapping
vgroup_mapping.my_test_tx_group = "rentao_tx_group"
#only support when registry.type=file, please don't set multiple addresses
default.grouplist = "127.0.0.1:8091"
#disable seata
disableGlobalTransaction = false
}
- store 事务日志保存位置修改
## transaction log store, only used in seata-server
store {
## store mode: file 文件储存、db 数据库存储
mode = "db"
## file store property
file {
## store location dir
dir = "sessionStore"
}
## database store property
db {
## the implement of javax.sql.DataSource, such as DruidDataSource(druid)/BasicDataSource(dbcp) etc.
datasource = "dbcp"
## mysql/oracle/h2/oceanbase etc.
db-type = "mysql"
driver-class-name = "com.mysql.jdbc.Driver"
## mysql/oracle/h2/oceanbase etc. 配置自己的数据库信息
url = "jdbc:mysql://127.0.0.1:3306/seata"
user = "root"
password = "password"
}
}
创建数据库,导入结构
创建 seata 库:执行以下
CREATE DATABASE seata;
-- the table to store GlobalSession data
drop table if exists `global_table`;
#TM
create table `global_table` (
`xid` varchar(128) not null,
`transaction_id` bigint,
`status` tinyint not null,
`application_id` varchar(32),
`transaction_service_group` varchar(32),
`transaction_name` varchar(128),
`timeout` int,
`begin_time` bigint,
`application_data` varchar(2000),
`gmt_create` datetime,
`gmt_modified` datetime,
primary key (`xid`),
key `idx_gmt_modified_status` (`gmt_modified`, `status`),
key `idx_transaction_id` (`transaction_id`)
);
-- the table to store BranchSession data
drop table if exists `branch_table`;
#RM
create table `branch_table` (
`branch_id` bigint not null,
`xid` varchar(128) not null,
`transaction_id` bigint ,
`resource_group_id` varchar(32),
`resource_id` varchar(256) ,
`lock_key` varchar(128) ,
`branch_type` varchar(8) ,
`status` tinyint,
`client_id` varchar(64),
`application_data` varchar(2000),
`gmt_create` datetime,
`gmt_modified` datetime,
primary key (`branch_id`),
key `idx_xid` (`xid`)
);
-- the table to store lock data
drop table if exists `lock_table`;
create table `lock_table` (
`row_key` varchar(128) not null,
`xid` varchar(96),
`transaction_id` long ,
`branch_id` long,
`resource_id` varchar(256) ,
`table_name` varchar(32) ,
`pk` varchar(36) ,
`gmt_create` datetime ,
`gmt_modified` datetime,
primary key(`row_key`)
);
registry.conf 注册方式修改
registry {
# file 、nacos 、eureka、redis、zk、consul、etcd3、sofa
type = "nacos"
nacos {
serverAddr = "localhost:8848"
namespace = ""
cluster = "default"
}
...
}
业务库数据准备
- 可能有n个 rm 对应的子业务库,在每个业务库增加回滚日志表
-- the table to store seata xid data
-- 0.7.0+ add context
-- you must to init this sql for you business databese. the seata server not need it.
-- 此脚本必须初始化在你当前的业务数据库中,用于AT 模式XID记录。与server端无关(注:业务数据库)
-- 注意此处0.3.0+ 增加唯一索引 ux_undo_log
drop table `undo_log`;
CREATE TABLE `undo_log` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`branch_id` bigint(20) NOT NULL,
`xid` varchar(100) NOT NULL,
`context` varchar(128) NOT NULL,
`rollback_info` longblob NOT NULL,
`log_status` int(11) NOT NULL,
`log_created` datetime NOT NULL,
`log_modified` datetime NOT NULL,
`ext` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `ux_undo_log` (`xid`,`branch_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
默认AT模式的加载流程
- 一阶段加载
在一阶段,Seata会拦截“业务SQL”
1:解析SQL语义,找到“业务SQL" 要更新的业务数据,在业务数据被更新前,
将其保存成"before image” (未变更之前的原始数据,用于rollback的数据回滚 )
2:执行“业务SQL" 更新业务数据,在业务数据更新之后,
3其保存成"after image”,最后生成行锁。
以上操作全部在一个数据库事务内完成, 这样保证了一阶段操作的原子性。
- 二阶段提交
二阶段如果顺利提交的话,因为"业务SQL"在一阶段已经提交至数据库,
所以Seata框架只需将一阶段保存的快照数据和行锁删掉,完成数据清理即可
- 二阶段回滚
二阶段如果是回滚的话,Seata 就需要回滚一阶段已经执行的 “业务SQL",还原业务数据。
回滚方式便是用"before image"还原业务数据;但在还原前要首先要校验脏写,
对比“数据库当前业务数据”和"after image"。
如果两份数据完全一致就说明没有脏写,可以用"before image"还原业务数据,
如果不一致就说明有别的业务操作对此数据已出现脏写, 出现脏写就需要转人工处理。
- remark
seata 相关表只有过程中持有数据,不管全局成功还是失败,数据是成功变更还是进行
回退,表里均不会有数据产生