-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OCT-2282: Lowering the db connection pool size & adding settings for it #594
OCT-2282: Lowering the db connection pool size & adding settings for it #594
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm but let's test it empirically as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E2E job #12390550774 failed 💥
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E2E job #12391451471 passed 🎉
Description
To better handle the pool size of postgres we lowered the pool size from 100 and moved params to dedicated config.
The issue probably is due to the fact that pg has (default) 100 connection and pool size of sqlalchemy was equal to it, causing overflows / connection drops because of reached limit.