pg-pool CloudSQL Reconnection
SkillMediaFix 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.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the pg-pool CloudSQL Reconnection skill
What this skill tells your AI
The instructions your AI receives, as published by divinevideo/divine-mobile in .agents/skills/pg-pool-cloudsql-reconnect/SKILL.md and read by ahel’s review.
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 ECONNRESETConnection terminatedconnection already closedremaining 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, // Adequate for concurrency
idleTimeoutMillis: 30000, // Close idle connections
connectionTimeoutMillis: 10000, // Timeout for new connections
keepAlive: true, // TCP keepalive
});
pool.on('error', (err) => {
console.error('Pool error:', err.message);
});
return pool;
}
private async reconnect(): Promise<void> {
console.log("Reconnecting to database...");
try {
await this.pool.end();
} catch {
// Ignore cleanup errors
}
this.pool = this.createPool();
await this.pool.query("SELECT 1"); // Verify connection
console.log("Database reconnected");
}
private async withRetry<T>(
operation: () => Promise<T>,
maxRetries = 3
): Promise<T> {
for (let attempt = 0; attempt < maxRetries; attempt++) {
try {
return await operation();
} catch (error) {
const msg = error instanceof Error ? error.message : String(error);
const needsReconnect =
msg.includes("ECONNRESET") ||
msg.includes("Connection terminated") ||
msg.includes("connection already closed") ||
msg.includes("remaining connection slots");
if (!needsReconnect || attempt === maxRetries - 1) {
throw error;
}
const delay = 1000 * Math.pow(2, attempt);
console.log(`Connection error, reconnecting in ${delay}ms...`);
await new Promise(r => setTimeout(r, delay));
// KEY: Recreate the pool, don't just retry
await this.reconnect();
}
}
throw new Error("Max retries exceeded");
}
}
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
maxpool size to match your concurrency level plus headroom
Signals
- GitHub stars
- 265
- Forks
- 55
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
pg-pool-cloudsql-reconnect- Source
- github.com/divinevideo/divine-mobile