分布式事务,是指事务的参与者、支持事务的服务器、资源服务器以及事务管理器分别位于不同节点之上。8s分布式架构通过GTM管理执行分布式事务,遵循XA标准,严格的两阶段提交,保证刚性事务,数据强一致。
Begin; -- Transaction Start
Select id from t1 where id=1; -- 单节点查询
Select * from t1, t2 where t1.id=t2.id;-- 跨节点查询
insert into t1 values(1, “aaa”); -- 单节点查询
Update t1 set name = ”bbb” where id = 1; -- 单节点查询
Delete from t2 where id < 10; -- 跨节点查询
Commit; -- Transaction Commit