GitHub user funky-eyes added a comment to the discussion: XA模式,先远程调用写,再远程调用读,但读不到刚才写的数据
XA transactions remain uncommitted by nature, so under the default isolation level, another database connection cannot read the uncommitted data. If you need to perform a repeated read of the same data (for consistency), you must do so within the same local transaction, rather than splitting the operations across multiple separate local transactions. This isn't a Seata-specific design—it's the standard behavior of XA transactions. GitHub link: https://github.com/apache/incubator-seata/discussions/7896#discussioncomment-15334192 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
