如何使用 SQLAlchemy 处理两阶段提交

发布于 2024-12-29 15:12:43 字数 709 浏览 0 评论 0原文

我正在尝试使用 SQLalchemy 0.6.8 和 Postgresql 8.3.4 进行两阶段提交,但我认为我错过了一些东西......
工作流程如下:

session = sessionmaker(engine)(autocommit=True)
tx = session.connection().begin_twophase(xid) # Doesn't issue any SQL
session.begin()
session.add(obj1)
session.flush()
tx.prepare()

然后从另一个会话

session = sessionmaker(engine)(autocommit=True)
session.connection().commit_prepared(xid, recover=True) # recover=True because otherwise it complains that you can't issue a COMMIT PREPARED from inside a transaction

这不会引发任何错误,但也不会向表中写入任何内容... O_o 我缺少什么?

我什至尝试在 prepare() 之后阻止应用程序,并从 pgadmin 发出 COMMIT PREPARED 'xid',但仍然没有写入任何内容。

I'm trying to do a two-phase commit using SQLalchemy 0.6.8 with Postgresql 8.3.4, but I think I'm missing something...
The workflow goes like this:

session = sessionmaker(engine)(autocommit=True)
tx = session.connection().begin_twophase(xid) # Doesn't issue any SQL
session.begin()
session.add(obj1)
session.flush()
tx.prepare()

then from another session

session = sessionmaker(engine)(autocommit=True)
session.connection().commit_prepared(xid, recover=True) # recover=True because otherwise it complains that you can't issue a COMMIT PREPARED from inside a transaction

This doesn't raise any error, but doesn't write anything to the table either... O_o
What am I missing?

I tried even blocking the application after the prepare() and issuing a COMMIT PREPARED 'xid' from pgadmin, but still nothing gets written.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷默言语 2025-01-05 15:12:43

我设法让它工作,方法如下:

session = sessionmaker(engine)(twophase=True)
session.add(obj1)
session.prepare()
# Find transaction id
for k, v in s.transaction._connections.iteritems():
   if isinstance(k, Connection):
      return v[1].xid

然后从另一个会话

session = sessionmaker(engine)(twophase=True)
session.connection().commit_prepared(xid, recover=True)

I managed to get it working, here's how:

session = sessionmaker(engine)(twophase=True)
session.add(obj1)
session.prepare()
# Find transaction id
for k, v in s.transaction._connections.iteritems():
   if isinstance(k, Connection):
      return v[1].xid

then from another session

session = sessionmaker(engine)(twophase=True)
session.connection().commit_prepared(xid, recover=True)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文