DetachedInstanceError:实例 不受会话约束;属性刷新操作无法继续[重复]

问题描述 投票:0回答:1

这个问题在这里已有答案:

我对Python和sqlalchemy没有太多经验。我检查了之前提出的类似问题,但仍然无法解决我的问题。我有一个独立的池pgbouncer。而我正在尝试使用sqlalchemy前面的pgbouncer。为了不让连接打开我试图使用contextmanager和语句。我认为我在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

也许有人会帮忙解决这个问题。谢谢。

python sqlalchemy
1个回答
2
投票

您可以使用session.expire_on_commit = False,以便下次使用会话。

您也可以在scoped_session init上设置此参数。

有关更多信息:Session API

© www.soinside.com 2019 - 2024. All rights reserved.