DetachedInstanceError: Instance <HomeCategory > 未绑定到会话;属性刷新操作无法继续



我对Python和Sqlalchemy的经验不多。我以前检查了类似的问题,但仍然无法解决问题。我有一个独立的PGBOUNCER。而且我正在尝试使用PGBOUNCER的SQLalchemy Front。对于"不要离开连接",我试图使用上下文管理器并使用语句。我认为我在get_db_session((方法中的错误。但仍然找不到。

这是我的repository.py

import logging
import threading
from contextlib import contextmanager
import sqlalchemy
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker, scoped_session
from sqlalchemy.orm.exc import NoResultFound
from sqlalchemy.pool import StaticPool
from sqlalchemy.pool import NullPool

@contextmanager
def get_db_session():
    try:
        engine = create_engine(
            'postgresql://superuser:@localhost:6432/testdbname', poolclass=NullPool)
        session_factory = sessionmaker(bind=engine)
        Session = scoped_session(session_factory)
        some_session = Session()
        print "got new session"
        yield some_session
        print "after yield goingt to commit"
        some_session.commit()
    except Exception as ex:
        print(ex)
        some_session.roleback()
    finally:
        some_session.expunge_all()
        some_session.close()
        print "closing"

def save(entity, _clazz=None):
    if _clazz:
        if hasattr(entity, 'id'):  # usually id is None so this method acs as normal save
            _id = entity.id
        else:
            _id = entity.name
        try:
            if _id:
                found = find(_clazz, _id)
                if found is not None:
                    if isinstance(found, list):
                        for e in found:
                            delete(e)
                    else:
                        delete(found)
        except NoResultFound:
            pass
    with get_db_session() as se:
        se.add(entity)
        se.commit()
def delete(entity):
    with get_db_session() as se:
        se.delete(entity)
        se.commit()
def find_by_element_value(_clazz, element, value):
    with get_db_session() as se:
        res = se.query(_clazz).filter(element == value).all()
        se.commit()
    return res
def get_all(_class):
    print "get_all starte"
    with get_db_session()  as se:
        print "entered with"
        res = se.query(_class).all()
        print "going to commit"
        se.commit()
    return res

在这里我使用test.py

import repositories as repository 
import model 
if __name__ == '__main__':
    a = repository.get_all(model.HomeCategory)
    a[0].slug

然后我得到这个错误。我的错误在哪里我听不懂。

Traceback (most recent call last):
  File "/home/sahin/workspace/myspider/myspider/spiders/test.py", line 6, in <module>
    a[0].slug
  File "/usr/local/lib/python2.7/dist-packages/sqlalchemy/orm/attributes.py", line 237, in __get__
    return self.impl.get(instance_state(instance), dict_)
  File "/usr/local/lib/python2.7/dist-packages/sqlalchemy/orm/attributes.py", line 579, in get
    value = state._load_expired(state, passive)
  File "/usr/local/lib/python2.7/dist-packages/sqlalchemy/orm/state.py", line 592, in _load_expired
    self.manager.deferred_scalar_loader(self, toload)
  File "/usr/local/lib/python2.7/dist-packages/sqlalchemy/orm/loading.py", line 644, in load_scalar_attributes
    (state_str(state)))
DetachedInstanceError: Instance <HomeCategory at 0x7f157008dd90> is not bound to a Session; attribute refresh operation cannot proceed

也许有人为此提供了帮助。谢谢。

您可以使用 session.expire_on_commit = False,因此会话可用于下一个用法。

您还可以在scoped_session INIT。

上设置此参数。

有关更多信息:会话API

最新更新