Re: removing idle connections
От | Gaetano Mendola |
---|---|
Тема | Re: removing idle connections |
Дата | |
Msg-id | 41756ABD.8080903@bigfoot.com обсуждение исходный текст |
Ответ на | removing idle connections (Josh Close <narshe@gmail.com>) |
Список | pgsql-general |
Josh Close wrote: > Is there a way to remove idle connections? My postgres server is > getting serveral hundred idle connections. It's due to a postgres .NET > provider not closing the connections properly. I don't want to kill > them all, or restart postgres everytime the connections go crazy. I do not think is problem of not close the connections. I bet the driver is acting like this: On connection: . Connect . start transaction On Commit: . commit transaction . start transaction On Abort: . abort transaction . start transaction On statemet: . execute statement As you can see you are always inside a transaction, idle I mean. BTW this is the behaviour of python driver PgDB ( I suggest to use psycopg instead ) and before the 8.0 series the JDBC driver did the same. The way to solve it is, delay the begin till the first statement: On connection: . Connect On Commit: . commit transaction On Abort: . abort transaction On statemet: . If is the first statement after a connection or a commit or an abort execute the: start transaction . execute statement For rpm mantainer: why do not include the psycopg instead of the actual python driver ? Regards Gaetano Mendola
В списке pgsql-general по дате отправления: