美文网首页我爱编程
mysql pool exhausted

mysql pool exhausted

作者: 刘月玮 | 来源:发表于2018-04-12 15:07 被阅读171次

    mysql.connector.errors.PoolError: Failed getting connection; pool exhausted

    When the number of checked-out connections reaches the size set in pool_size, additional connections will be returned up to this limit. When those additional connections are returned to the pool, they are disconnected and discarded. It follows then that the total number of simultaneous connections the pool will allow is pool_size + max_overflow, and the total number of “sleeping” connections the pool will allow is pool_size.

    相关文章

      网友评论

        本文标题:mysql pool exhausted

        本文链接:https://www.haomeiwen.com/subject/uvaxkftx.html