4

我编写了自己的 PyramidISession 接口实现,它应该将 Session 存储在数据库中。一切都很好,但不知何故pyramid_tm抛出了这个。一旦激活它就会说:

DetachedInstanceError: Instance <Session at 0x38036d0> is not bound to a Session;
attribute refresh operation cannot proceed

(不要在这里混淆:The<Session ...>是模型的类名,“... to a Session”很可能是指 SQLAlchemy 的 Session(我称之为DBSession避免混淆)。

我查看了邮件列表和 SO,似乎任何时候有人遇到问题,他们是

  • 产生一个新线程或
  • 手动调用transaction.commit()

这些事情我都不做。然而,这里的特点是,我的会话被 Pyramid 传递了很多。首先我做DBSession.add(session)然后return session。之后我可以处理会话,显示新消息等。

但是,似乎一旦请求完成,我就会收到此异常。这是完整的回溯:

Traceback (most recent call last):
  File "/home/javex/data/Arbeit/libraries/python/web_projects/pyramid/lib/python2.7/site-packages/waitress-0.8.1-py2.7.egg/waitress/channel.py", line 329, in service
    task.service()
  File "/home/javex/data/Arbeit/libraries/python/web_projects/pyramid/lib/python2.7/site-packages/waitress-0.8.1-py2.7.egg/waitress/task.py", line 173, in service
    self.execute()
  File "/home/javex/data/Arbeit/libraries/python/web_projects/pyramid/lib/python2.7/site-packages/waitress-0.8.1-py2.7.egg/waitress/task.py", line 380, in execute
    app_iter = self.channel.server.application(env, start_response)
  File "/home/javex/data/Arbeit/libraries/python/web_projects/pyramid/lib/python2.7/site-packages/pyramid/router.py", line 251, in __call__
    response = self.invoke_subrequest(request, use_tweens=True)
  File "/home/javex/data/Arbeit/libraries/python/web_projects/pyramid/lib/python2.7/site-packages/pyramid/router.py", line 231, in invoke_subrequest
    request._process_response_callbacks(response)
  File "/home/javex/data/Arbeit/libraries/python/web_projects/pyramid/lib/python2.7/site-packages/pyramid/request.py", line 243, in _process_response_callbacks
    callback(self, response)
  File "/home/javex/data/Arbeit/libraries/python/web_projects/pyramid/miniblog/miniblog/models.py", line 218, in _set_cookie
    print("Setting cookie %s with value %s for session with id %s" % (self._cookie_name, self._cookie, self.id))
  File "build/bdist.linux-x86_64/egg/sqlalchemy/orm/attributes.py", line 168, in __get__
    return self.impl.get(instance_state(instance),dict_)
  File "build/bdist.linux-x86_64/egg/sqlalchemy/orm/attributes.py", line 451, in get
    value = callable_(passive)
  File "build/bdist.linux-x86_64/egg/sqlalchemy/orm/state.py", line 285, in __call__
    self.manager.deferred_scalar_loader(self, toload)
  File "build/bdist.linux-x86_64/egg/sqlalchemy/orm/mapper.py", line 1668, in _load_scalar_attributes
    (state_str(state)))
DetachedInstanceError: Instance <Session at 0x7f4a1c04e710> is not bound to a Session; attribute refresh operation cannot proceed

对于这种情况,我停用了调试工具栏。一旦我激活它,错误就会从那里抛出。似乎这里的问题是在任何时候访问对象。

我意识到我可以尝试以某种方式分离它,但这似乎不是正确的方法,因为如果不再次明确地将其添加到会话中,就无法修改元素。

因此,当我没有产生新线程并且我没有显式调用提交时,我猜事务在请求完全消失之前提交,然后再次访问它。我该如何处理这个问题?

4

2 回答 2

5

我相信您在这里看到的是一个怪癖,即响应回调和完成的回调实际上是在补间之后执行的。它们位于应用程序的出口和中间件之间。pyramid_tm,作为补间,在您的响应回调执行之前提交事务 - 在以后访问时导致错误。

让这些事情的顺序正确是很困难的。我想到的一种可能性是在下面注册你自己的补间, pyramid_tm会话上执行刷新,获取 id,并在响应上设置 cookie。

我对这个问题表示同情,因为在事务提交后发生的任何事情都是 Pyramid 中的一个真正的灰色区域,并不总是清楚不应该触及会话。我会做笔记以继续思考如何在未来改进 Pyramid 的这个工作流程。

于 2013-03-12T03:11:18.550 回答
2

我首先尝试注册一个补间,它以某种方式工作,但数据没有被保存。然后我偶然发现了SQLAlchemy Event System。我找到了after_commit事件。使用它,我可以在提交完成后设置会话对象的分离pyramid_tm。我认为这提供了完全的灵活性,并且不会对订单提出任何要求。

我的最终解决方案:

from sqlalchemy.event import listen
from sqlalchemy.orm import Session as SASession
def detach(db_session):
    from pyramid.threadlocal import get_current_request
    request = get_current_request()
    log.debug("Expunging (detaching) session for DBSession")
    db_session.expunge(request.session)
listen(SASession, 'after_commit', detach)

唯一的缺点:它需要调用get_current_request(),这是不鼓励的。但是,我看不到以任何方式传递会话的方法,因为事件被 SQLAlchemy 调用。我想到了一些丑陋的包装材料,但我认为那将是冒险且不稳定的方式。

于 2013-03-12T17:28:46.790 回答