table xxx' 上的 UPDATE 语句预计将更新 1 行; 0 个与 Zope transactionmanager 匹配

UPDATE statement on table xxx' expected to update 1 row(s); 0 were matched with Zope transactionmanager

我是运行 Pyramid + Zope 事务管理器 + SQLAlchemy + PostgreSQL。在某些情况下,我在 Pyramid web 应用程序上看到 StaleDataError 错误,这应该是更新数据库中一行的非常简单的视图。由于错误发生在正常视图边界之外且不可重复,因此调试起来非常棘手。

我想这可能与断开的数据库连接或事务生命周期有关。但是我不知道如何开始调试系统,所以我想问是什么原因导致的,以及如何确定这样的错误。

UPDATE statement on table 'xxx' expected to update 1 row(s); 0 were matched.

Stacktrace (most recent call last):

  File "pyramid/tweens.py", line 20, in excview_tween
    response = handler(request)
  File "pyramid_tm/__init__.py", line 94, in tm_tween
    reraise(*exc_info)
  File "pyramid_tm/compat.py", line 15, in reraise
    raise value
  File "pyramid_tm/__init__.py", line 82, in tm_tween
    manager.commit()
  File "transaction/_manager.py", line 111, in commit
    return self.get().commit()
  File "transaction/_transaction.py", line 280, in commit
    reraise(t, v, tb)
  File "transaction/_compat.py", line 55, in reraise
    raise value
  File "transaction/_transaction.py", line 271, in commit
    self._commitResources()
  File "transaction/_transaction.py", line 417, in _commitResources
    reraise(t, v, tb)
  File "transaction/_compat.py", line 55, in reraise
    raise value
  File "transaction/_transaction.py", line 389, in _commitResources
    rm.tpc_begin(self)
  File "/srv/pyramid/trees/venv/lib/python3.4/site-packages/zope/sqlalchemy/datamanager.py", line 90, in tpc_begin
    self.session.flush()
  File "sqlalchemy/orm/session.py", line 2004, in flush
    self._flush(objects)
  File "sqlalchemy/orm/session.py", line 2122, in _flush
    transaction.rollback(_capture_exception=True)
  File "sqlalchemy/util/langhelpers.py", line 60, in __exit__
    compat.reraise(exc_type, exc_value, exc_tb)
  File "sqlalchemy/util/compat.py", line 182, in reraise
    raise value
  File "sqlalchemy/orm/session.py", line 2086, in _flush
    flush_context.execute()
  File "sqlalchemy/orm/unitofwork.py", line 373, in execute
    rec.execute(self)
  File "sqlalchemy/orm/unitofwork.py", line 532, in execute
    uow
  File "sqlalchemy/orm/persistence.py", line 170, in save_obj
    mapper, table, update)
  File "sqlalchemy/orm/persistence.py", line 692, in _emit_update_statements
    (table.description, len(records), rows))

最有可能的情况是:

您有 2 个请求,首先 select 一个对象并尝试 update/delete 它在数据存储区中,最后得到一个 "race condition"。

假设您想做一些事情,比如获取一个对象然后更新它。

如果事务需要一些时间并且您没有 select 具有 "for update" 的对象从而锁定行 - 如果对象在第一个请求中被删除并且第二个事务尝试对行发出更新不再存在于数据库中,您可能会遇到此异常。

您可以尝试进行一些行锁定以防止这种情况发生 - 后续事务将 "wait" 完成第一个操作。在执行之前。

http://docs.sqlalchemy.org/en/rel_1_0/orm/query.html?highlight=for_update#sqlalchemy.orm.query.Query.with_for_update

http://docs.sqlalchemy.org/en/rel_1_0/orm/query.html?highlight=with_lockmode#sqlalchemy.orm.query.Query.with_lockmode

描述一些可以用来解决这个问题的 sqlalchemy 机制。

另一个选项:

TL,DR: 如果你在某些情况下有“first()”,如果你更新多条记录,你需要在炼金术中删除它

db.session.query(xxx).filter_by(field=value).first()

此命令预计更新只会影响一行。如果您的 table 只有一个 field=value 的记录,它应该如此。如果该字段是您的 ID,则尤其如此。

但是 - 如果您的 ID 不是唯一的,您可能有多个具有相同 ID 的记录。

在这种情况下,您可以通过删除“first()”来更新所有内容

顺便说一句,使用以下内容来调试您的 SQL 查询(这次不会有帮助...)

import logging

logging.basicConfig()
logging.getLogger('sqlalchemy.engine').setLevel(logging.INFO)