On May 16, 2011, at 2:29 AM, abhishek wrote: > Dear group, > > I am getting Queue pool overflow error very frequently in one of the > websites in production. > > The production server is running two cherrypy sites (one for mobile > access and another for PC access) targeting same database. My query > here is should the value of SQLAlchemy pool size for both the sites be > same.
the pool size defaults to 5 plus an overflow of 10. When it hits its maximum, that's a product of how much your application is making usage of the pool and how quickly it is releasing resources back. That kind of error means either your application needs more than 15 concurrent connections, or it is somehow keeping resources opened longer than it should. -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to sqlalchemy@googlegroups.com. To unsubscribe from this group, send email to sqlalchemy+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en.