Sql Alchemy QueuePool limit overflow

后端 未结 3 2152
情深已故
情深已故 2020-12-30 21:01

I have a Sql Alchemy application that is returning TimeOut:

TimeoutError: QueuePool limit of size 5 overflow 10 reached, connection timed out, timeo

相关标签:
3条回答
  • 2020-12-30 21:34

    Also you can use engine.dispose() method in the end of def. This has the effect of fully closing all currently checked in database connections.

    0 讨论(0)
  • 2020-12-30 21:47

    You can manage pool size by adding parameters pool_size and max_overflow in function create_engine

    engine = create_engine("mysql://" + loadConfigVar("user") + ":" + loadConfigVar("password") + "@" + loadConfigVar("host") + "/" + loadConfigVar("schema"), 
                            pool_size=20, max_overflow=0)
    

    Reference is here

    You don't need to close the session, but the connection should be closed after your transaction has been done. Replace:

    rescount = DBSession.connection().execute("select resource_id,count(resource_id) as total FROM resourcestats")
    

    By:

    connection = DBSession.connection()
    try:
        rescount = connection.execute("select resource_id,count(resource_id) as total FROM resourcestats")
        #do something
    finally:
        connection.close()
    

    Reference is here

    Also, notice that mysql's connection that have been stale is closed after a particular period of time (this period can be configured in MySQL, I don't remember the default value), so you need passing pool_recycle value to your engine creation

    0 讨论(0)
  • 2020-12-30 21:53

    Add following method to your code. It will automatically close all unused/hanging connections and prevent bottleneck in your code. Especially if you are using following syntax Model.query.filter_by(attribute=var).first() and relationships / lazy loading.

       @app.teardown_appcontext
        def shutdown_session(exception=None):
            db.session.remove()
    

    Documentation on this is available here: http://flask.pocoo.org/docs/1.0/appcontext/

    0 讨论(0)
提交回复
热议问题