Come liberare le connessioni PostgreSQL che non vengono chiuse correttamente dalle applicazioni client?
Ho un'app di data mining che ruota su più processi, tutte le connessioni a un database PostgreSQL 9.1 locale per recuperare i dati. Funziona bene per alcune ore, ma poi muore con l'errore:
FATAL: remaining connection slots are reserved for non-replication superuser connections
La ricerca mostra che ciò è molto probabilmente causato dall'app che non chiude correttamente le sue connessioni. Tuttavia, anche con l'app uccisa, queste connessioni non vengono mai liberate. Non esiste una sorta di timeout in cui PostgreSQL chiuderà automaticamente una connessione?
Ho anche provato ad aumentare le max_connections di Postgres da 100 a 200, ma il riavvio mi ha dato l'errore:
2014-02-23 10:51:15 EST FATAL: could not create shared memory segment: Invalid argument
2014-02-23 10:51:15 EST DETAIL: Failed system call was shmget(key=5432001, size=36954112, 03600).
2014-02-23 10:51:15 EST HINT: This error usually means that PostgreSQL's request for a shared memory segment exceeded your kernel's SHMMAX parameter. You can either reduce the request size or reconfigure the kernel with larger SHMMAX. To reduce the request size (currently 36954112 bytes), reduce PostgreSQL's shared memory usage, perhaps by reducing shared_buffers or max_connections.
If the request size is already small, it's possible that it is less than your kernel's SHMMIN parameter, in which case raising the request size or reconfiguring SHMMIN is called for.
The PostgreSQL documentation contains more information about shared memory configuration.
Il mio sistema è Ubuntu 12.04 e ha 8 GB di memoria e tutte le altre impostazioni PG sono predefinite, quindi non sono sicuro del motivo per cui pensa che il sistema non abbia memoria sufficiente.
Ho quindi provato a utilizzare pgbouncer per raggruppare e riutilizzare le connessioni. Questo sembra funzionare un po 'meglio, ma alla fine anche questo ha esaurito le connessioni, dandomi l'errore:
ERROR: no more connections allowed
Come posso diagnosticare e risolvere ulteriormente questo problema?