2012-09-11 5 views
3

업데이트 : echo_pool = True는 주요 이벤트 만 표시하며 대신 echo_pool = "debug"를 사용합니다.SqlAlchemy로 TimeoutError 받기

명시 적으로 엔진 연결을 닫아야합니다. 그렇지 않으면 nosetest 및 sqlalchemy를 사용할 때 TimeoutError: QueuePool limit of size 5 overflow 10 reached, connection timed out, timeout 30 오류가 발생합니다.

join a Session into an external transaction에 대한 SqlAlchemy 설명서를 따르고 있습니다. 유일한 차이점은 내가 스코프 세션을 사용하고 있다는 것입니다. 여기서 문제가되는 코드는 다음과 같습니다

import unittest 

from sqlalchemy import create_engine 

from myapp.mymodel import Session 

engine = create_engine(
    '<REDACTED>', 
    echo = False, 
    # To make it faster to fail, but also fails with the default options 
    # pool_size=2, 
    # max_overflow=0, 
    # echo_pool="debug", 
    # pool_timeout=10, 
) 


class MyTest(unittest.TestCase): 

    def setUp(self): 
     self.connection = engine.connect() 

     # begin a non-ORM transaction 
     self.trans = self.connection.begin() 

     # bind an individual Session to the connection 
     Session.configure(bind=self.connection) 

     self.addCleanup(self._teardown) 

    def _teardown(self): 
     """Rollback the db. 

     Added to the list of cleanup by setUp, so that subclass do not have to 
     call super() on tearDown. 
     """ 

     # Rollback database 
     self.trans.rollback() 

     # Session must be closed BEFORE being removed 
     Session.close() 
     Session.remove() 
     # If I don't do that, I get TimeOut 
     # self.connection.close() 

가 여기에 echo_pool 디버그 출력입니다 :

2012-09-11 12:34:28,506 DEBUG sqlalchemy.pool.QueuePool Created new connection <_mysql.connection open to '127.0.0.1' at 7f938bae1e20> 
2012-09-11 12:34:28,514 DEBUG sqlalchemy.pool.QueuePool Connection <_mysql.connection open to '127.0.0.1' at 7f938bae1e20> checked out from pool 
2012-09-11 12:34:29,664 DEBUG sqlalchemy.pool.QueuePool Created new connection <_mysql.connection open to '127.0.0.1' at 7f938bc61c20> 
2012-09-11 12:34:29,665 DEBUG sqlalchemy.pool.QueuePool Connection <_mysql.connection open to '127.0.0.1' at 7f938bc61c20> checked out from pool 
2012-09-11 12:34:30,368 DEBUG sqlalchemy.pool.QueuePool Created new connection <_mysql.connection open to '127.0.0.1' at 7f938bc9ea20> 
2012-09-11 12:34:30,369 DEBUG sqlalchemy.pool.QueuePool Connection <_mysql.connection open to '127.0.0.1' at 7f938bc9ea20> checked out from pool 
2012-09-11 12:34:31,042 DEBUG sqlalchemy.pool.QueuePool Created new connection <_mysql.connection open to '127.0.0.1' at 7f938bcd6820> 
2012-09-11 12:34:31,043 DEBUG sqlalchemy.pool.QueuePool Connection <_mysql.connection open to '127.0.0.1' at 7f938bcd6820> checked out from pool 
2012-09-11 12:34:31,775 DEBUG sqlalchemy.pool.QueuePool Created new connection <_mysql.connection open to '127.0.0.1' at 7f938bcbd820> 
2012-09-11 12:34:31,775 DEBUG sqlalchemy.pool.QueuePool Connection <_mysql.connection open to '127.0.0.1' at 7f938bcbd820> checked out from pool 
2012-09-11 12:34:32,439 DEBUG sqlalchemy.pool.QueuePool Created new connection <_mysql.connection open to '127.0.0.1' at 7f938bcc2220> 
2012-09-11 12:34:32,439 DEBUG sqlalchemy.pool.QueuePool Connection <_mysql.connection open to '127.0.0.1' at 7f938bcc2220> checked out from pool 
2012-09-11 12:34:33,129 DEBUG sqlalchemy.pool.QueuePool Created new connection <_mysql.connection open to '127.0.0.1' at 7f938bd0e220> 
2012-09-11 12:34:33,129 DEBUG sqlalchemy.pool.QueuePool Connection <_mysql.connection open to '127.0.0.1' at 7f938bd0e220> checked out from pool 
2012-09-11 12:34:33,802 DEBUG sqlalchemy.pool.QueuePool Created new connection <_mysql.connection open to '127.0.0.1' at 7f938bd1e420> 
2012-09-11 12:34:33,802 DEBUG sqlalchemy.pool.QueuePool Connection <_mysql.connection open to '127.0.0.1' at 7f938bd1e420> checked out from pool 
2012-09-11 12:34:34,590 DEBUG sqlalchemy.pool.QueuePool Created new connection <_mysql.connection open to '127.0.0.1' at 7f938bcf6a20> 
2012-09-11 12:34:34,590 DEBUG sqlalchemy.pool.QueuePool Connection <_mysql.connection open to '127.0.0.1' at 7f938bcf6a20> checked out from pool 
2012-09-11 12:34:35,452 DEBUG sqlalchemy.pool.QueuePool Created new connection <_mysql.connection open to '127.0.0.1' at 7f938bd53420> 
2012-09-11 12:34:35,452 DEBUG sqlalchemy.pool.QueuePool Connection <_mysql.connection open to '127.0.0.1' at 7f938bd53420> checked out from pool 
2012-09-11 12:34:36,276 DEBUG sqlalchemy.pool.QueuePool Created new connection <_mysql.connection open to '127.0.0.1' at 7f938bd32420> 
2012-09-11 12:34:36,276 DEBUG sqlalchemy.pool.QueuePool Connection <_mysql.connection open to '127.0.0.1' at 7f938bd32420> checked out from pool 
2012-09-11 12:34:36,970 DEBUG sqlalchemy.pool.QueuePool Created new connection <_mysql.connection open to '127.0.0.1' at 7f938bd80420> 
2012-09-11 12:34:36,971 DEBUG sqlalchemy.pool.QueuePool Connection <_mysql.connection open to '127.0.0.1' at 7f938bd80420> checked out from pool 
2012-09-11 12:34:37,639 DEBUG sqlalchemy.pool.QueuePool Created new connection <_mysql.connection open to '127.0.0.1' at 7f938bda9020> 
2012-09-11 12:34:37,640 DEBUG sqlalchemy.pool.QueuePool Connection <_mysql.connection open to '127.0.0.1' at 7f938bda9020> checked out from pool 
2012-09-11 12:34:37,664 DEBUG sqlalchemy.pool.QueuePool Created new connection <_mysql.connection open to '127.0.0.1' at 7f938bdc3c20> 
2012-09-11 12:34:37,664 DEBUG sqlalchemy.pool.QueuePool Connection <_mysql.connection open to '127.0.0.1' at 7f938bdc3c20> checked out from pool 
2012-09-11 12:34:37,675 DEBUG sqlalchemy.pool.QueuePool Created new connection <_mysql.connection open to '127.0.0.1' at 7f938bd95e20> 
2012-09-11 12:34:37,675 DEBUG sqlalchemy.pool.QueuePool Connection <_mysql.connection open to '127.0.0.1' at 7f938bd95e20> checked out from pool 

감사합니다!

답변

2

나는 sqlalchemy의 그룹에서 같은 질문을했다.

그래서 그래, 당신이 마이클 바이엘에 따라 명시 적으로 연결을 종료해야합니까 :

을 당신은 유닛 테스트와 테스트를 실행하면, 유닛 테스트는 모든 테스트를 의미하는 테스트 클래스의 새 인스턴스를 생성 클래스 인스턴스는 거기에 self.connection을 가지며 풀로 반환되지 않습니다.

https://groups.google.com/forum/?fromgroups=#!topic/sqlalchemy/eiQTXKn5ai8