| From: | Oliver Jowett <oliver(at)opencloud(dot)com> |
|---|---|
| To: | Fabrice(dot)Sznajderman(at)devoteam(dot)com |
| Cc: | pgsql-jdbc(at)postgresql(dot)org |
| Subject: | Re: [IDLE in TRANSACTION] when I do TOP -c |
| Date: | 2006-01-06 00:58:46 |
| Message-ID: | 43BDC0C6.1080205@opencloud.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-jdbc |
Fabrice(dot)Sznajderman(at)devoteam(dot)com wrote:
> I look the processes on my server where was installed Postgres Database.
> I can saw, when I do top command, many process named : idle in transaction.
>
> What happend with this process? what is the cause of this message?
Each process corresponds to a single client connection to the database.
"idle in transaction" means that connection has a transaction open but
is not currently doing any work. If I had to guess at the cause of this
I'd say that you are using a connection pool and a 7.4 driver.
The JDBC driver would cause these idle transactions itself (mostly
harmlessly) in 7.4 and earlier releases when autocommit was off: a
commit or rollback would automatically start a new transaction even
before any queries had been run.
With 8.0 and later drivers a new transaction is only started when the
first query after a commit or rollback is done, so if you are using
these drivers it probably indicates an application bug where it is not
correctly closing transactions it begins.
-O
| From | Date | Subject | |
|---|---|---|---|
| Next Message | hpb@htl-steyr.ac.at | 2006-01-06 01:50:52 | Re: bug in getTime after insertRow with postgresql-8.1-404.jdbc3.jar |
| Previous Message | Oliver Jowett | 2006-01-06 00:52:38 | Re: Fw: Re: GROUP_CONCAT in PostgreSQL |