We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
想问下作者这个表具体是怎么使用的呢?gxid和bxid分别代表啥?是不是try阶段成功了就插入一条记录?然后再confirm或者cancel的时候插入第二条记录?最后整个事务执行完了把这两条记录都删了?但是这里有个问题,假设confirm阶段有个服务执行失败了,那么这个时候表里就只有try时候的一条记录,那么在进行重试的时候,他怎么依据表里的数据知道是要confirm还是rollback呢?
The text was updated successfully, but these errors were encountered:
2.gxid和bxid对应该本地事务ID的全局标识和分支标识;
3.bytejta只做辅助作用,事务状态主要记录在事务日志中。只有少部分场景下,byteTCC才依赖这张表来判断某个本地事务是否被commit。
Sorry, something went wrong.
No branches or pull requests
想问下作者这个表具体是怎么使用的呢?gxid和bxid分别代表啥?是不是try阶段成功了就插入一条记录?然后再confirm或者cancel的时候插入第二条记录?最后整个事务执行完了把这两条记录都删了?但是这里有个问题,假设confirm阶段有个服务执行失败了,那么这个时候表里就只有try时候的一条记录,那么在进行重试的时候,他怎么依据表里的数据知道是要confirm还是rollback呢?
The text was updated successfully, but these errors were encountered: