Re: Too much data received?

From: Steve Wampler <swampler(at)noao(dot)edu>
To: Barry Lind <barry(at)xythos(dot)com>
Cc: postgres-jdbc <pgsql-jdbc(at)postgresql(dot)org>
Subject: Re: Too much data received?
Date: 2001-07-10 18:07:53
Message-ID: 3B4B4479.C7C18B7A@noao.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-interfaces pgsql-jdbc

Barry Lind wrote:
>
> Steve,
>
> In looking at the source code I couldn't explain why you would be
> getting the error below. (All of the places that I see a max buffer
> size specified, seem to be appropriate and shouldn't generate the error
> you are seeing). Can you send a test case to the list for me to
> investigate this further?
>
> thanks,
> --Barry
>
> Steve Wampler wrote:
>
> > Steve Wampler wrote:
> >
> > ...
> >
> >>Too much data was received.
> >> at org.postgresql.PG_Stream.ReceiveString(PG_Stream.java:306)
> >> at org.postgresql.Connection.ExecSQL(Connection.java:532)
> >> at org.postgresql.jdbc2.Statement.execute(Statement.java:294)
> >> at org.postgresql.jdbc2.Statement.executeUpdate(Statement.java:78)
> >> at OCS.database.DbServer.execute(DbServer.java:271)

Hi Barry,

Hmmm, maybe the problem is only with the handling of error responses from
the back end?

The problem arises because PG_Stream.ReceiveString calls in Connection.ExecSQL
class put a bound on the length of strings received from the backend.

I think I originally saw the problem when an INSERT that included a
*very* long text field entry generated an exception (I had dropped a
function used as a trigger on inserts)) - the message that
comes back from the back end includes (as near as I can remember)
the original insert text, generating the above. The exception above
went away when I bumped the size of receive_sbuf to something larger
than 8096 [this was with jdbc7.1-1.2.jar] and changed the calls
to use the new size where they had been using 8096 before. I bumped it to
262144, incidently - these were large text fields. This enabled me to
find the other error and fix it.

I'm not sure if ReceiveString is used when dealing with INSERT/SELECT of
text fields or not - I had assumed it was, but if you don't see the problem
then perhaps it's limited only to similar error cases? If that's the case, then
there's really no need for the changes I've made! [And I'll happily
drop them!] (but perhaps there should be another way to handle this situation?)

It's a little difficult for me to produce a small test case - this arose
when running an application that's pretty large and uses a lot of custom
classes -as well as needing several other applications (logging service,
message service, etc.). I'm reluctant to try and pare it down if this was
really only a problem when dealing with error message text.

If you'd like to pursue it (that is, this is more than a problem when
receiving the text from error messages), let me know and I'll see if I
can generate it again.

Thanks!
--
Steve Wampler- SOLIS Project, National Solar Observatory
swampler(at)noao(dot)edu

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Bruno Wolff III 2001-07-10 19:08:58 Re: NULL values
Previous Message Bruce Momjian 2001-07-10 17:54:38 Re: Interfacing with MSAccess

Browse pgsql-interfaces by date

  From Date Subject
Next Message markMLl.pgsql-interfaces 2001-07-10 20:55:46 Re: Getting info on "Max LongVarChar" under ODBC
Previous Message Steve Wampler 2001-07-10 16:58:40 Re: [JDBC] Re: Too much data received?

Browse pgsql-jdbc by date

  From Date Subject
Next Message Joseph Shraibman 2001-07-10 19:33:29 Re: Re: Backups WAS: 2 gig file size limit
Previous Message Barry Lind 2001-07-10 18:07:46 Re: Shutdown hook imp