I'm exploring the use of PgBouncer as a connection pooler for my PostgreSQL database. While it's been promising so far, I've encountered a challenge: if the database goes down or restarts during an operation, PgBouncer doesn't seem to handle it gracefully.
I have tried tweaking server_login_retry by setting
server_login_retry=3600
but that did not help
Is PgBouncer designed to manage such scenarios? If not, are there alternative tools or setups that can provide more resilience against database interruptions?