| name | pg-pool-cloudsql-reconnect |
| description | Fix Node.js pg-pool not reconnecting after CloudSQL connection reset (ECONNRESET).
Use when: (1) Retries fail with same ECONNRESET error despite retry logic,
(2) "Connection terminated" or "connection already closed" errors persist across retries,
(3) "remaining connection slots are reserved" errors in CloudSQL,
(4) High-concurrency Node.js app with pg-pool and CloudSQL/managed PostgreSQL.
The pool caches dead connections - you must recreate the pool, not just retry.
|
| author | Claude Code |
| version | 1.0.0 |
| date | "2026-01-30T00:00:00.000Z" |
pg-pool CloudSQL Reconnection
Problem
Node.js applications using pg-pool with CloudSQL (or other managed PostgreSQL) fail to
recover from connection resets. Retry logic appears to work but keeps failing with the
same ECONNRESET error because the pool caches dead connections.
Context / Trigger Conditions
- ECONNRESET errors that persist despite retry logic
- Error messages like:
read ECONNRESET
Connection terminated
connection already closed
remaining connection slots are reserved for non-replication superuser connections
- High-concurrency applications (parallel batch processing)
- CloudSQL with small instance tiers (db-f1-micro, db-g1-small)
- Long-running scripts with periods of inactivity followed by bursts
Root Cause
pg-pool maintains a pool of database connections. When CloudSQL resets connections
(due to timeout, maintenance, or connection limits), the pool still holds references
to those dead connections. Simply retrying the operation uses the same dead connection
from the pool.
Solution
Instead of just retrying, recreate the entire pool on connection reset errors:
export class PostgresDatabase {
private pool: Pool;
private config: PostgresConfig;
constructor(config: PostgresConfig) {
this.config = config;
this.pool = this.createPool();
}
private createPool(): Pool {
const pool = new Pool({
...this.config,
max: 25,
idleTimeoutMillis: 30000,
connectionTimeoutMillis: 10000,
keepAlive: true,
});
pool.on('error', (err) => {
console.error('Pool error:', err.message);
});
return pool;
}
private async (): <> {
.();
{
..();
} {
}
. = .();
..();
.();
}
withRetry<T>(
: <T>,
maxRetries =
): <T> {
( attempt = ; attempt < maxRetries; attempt++) {
{
();
} (error) {
msg = error ? error. : (error);
needsReconnect =
msg.() ||
msg.() ||
msg.() ||
msg.();
(!needsReconnect || attempt === maxRetries - ) {
error;
}
delay = * .(, attempt);
.();
( (r, delay));
.();
}
}
();
}
}
Key Insight
Retrying with the same pool uses cached dead connections. The fix is to:
- Detect connection reset errors
- Call
pool.end() to close all connections
- Create a new pool instance
- Verify the new connection works
- Then retry the operation
CloudSQL-Specific Considerations
-
Instance tier matters: db-f1-micro only supports ~25 connections. Use db-g1-small or larger for concurrent workloads.
-
Check max_connections:
gcloud sql instances describe INSTANCE --format='value(settings.tier)'
-
Cloud SQL Proxy: Doesn't help with connection pooling - it just tunnels TCP. Consider PgBouncer for true connection pooling.
Verification
After implementing:
- Run high-concurrency workload
- Intentionally cause connection reset (restart proxy, wait for idle timeout)
- Verify operations resume with "Reconnecting to database..." log
- No more cascading failures
Notes
- This pattern applies to any managed PostgreSQL, not just CloudSQL
- Consider PgBouncer for production workloads with very high concurrency
- The
pool.on('error') handler prevents uncaught exceptions from crashing the app
- Set
max pool size to match your concurrency level plus headroom