Re: Postgresql 7.0 JDBC exceptions - broken connections ?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Peter Mount <petermount(at)it(dot)maidstone(dot)gov(dot)uk>
Cc: "'Gunnar R|nning'" <gunnar(at)candleweb(dot)no>, pgsql-interfaces(at)postgresql(dot)org, "PostgreSQL Developers List (E-mail)" <hackers(at)postgresql(dot)org>
Subject: Re: Postgresql 7.0 JDBC exceptions - broken connections ?
Date: 2000-05-26 15:13:16
Message-ID: 1866.959353996@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-interfaces

Peter Mount <petermount(at)it(dot)maidstone(dot)gov(dot)uk> writes:
> Unknown Response Type u

> PM: Does anyone [on Hackers] know what the u code is for? The fact it's
> in lower case tells me that the protocol/connection got broken somehow.

There is no 'u' message code. Looks to me like the client got out of
sync with the backend and is trying to interpret data as the start of
a message.

I think that this and the "Tuple received before MetaData" issue could
have a common cause, namely running out of memory on the client side
and not recovering well. libpq is known to emit its equivalent of
"Tuple received before MetaData" when the backend hasn't violated the
protocol at all. What happens is that libpq runs out of memory while
trying to accumulate a large query result, "recovers" by resetting
itself to no-query-active state, and then is surprised when the next
message is another tuple. (Obviously this error recovery plan needs
work, but no one's got round to it yet.) I wonder whether the JDBC
driver has a similar problem, and whether these queries could have
been retrieving enough data to trigger it?

Another possibility is that the client app is failing to release
query results when done with them, which would eventually lead to
an out-of-memory condition even with not-so-large queries.

regards, tom lane

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Ron Peterson 2000-05-26 15:24:41 SPI & file locations
Previous Message Bruce Momjian 2000-05-26 14:23:14 Re: Any reason to use pg_dumpall on an idle database

Browse pgsql-interfaces by date

  From Date Subject
Next Message Ed Loehr 2000-05-26 15:32:54 Re: Where is a mistake?
Previous Message Alexandr Listopad 2000-05-26 14:31:00 Where is a mistake?