Re: Hibernate over postgresql

From: Dave Cramer <pg(at)fastcrypt(dot)com>
To: amithbm <amithbm(at)gmail(dot)com>
Cc: List <pgsql-jdbc(at)postgresql(dot)org>
Subject: Re: Hibernate over postgresql
Date: 2014-06-06 10:30:53
Message-ID: CADK3HHKeH2C7ibs=W7HZ=y7XFxYStyUZ=gRF4jtYu=5WJNq2UA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

That is very unusual that just changing the server version changes the time
to respond. Is the server machine different ?

Are there any other differences ?

You mentioned that others have run into this problem. Is there an email
thread anywhere ?

Dave Cramer

dave.cramer(at)credativ(dot)ca
http://www.credativ.ca

On 5 June 2014 13:52, amithbm <amithbm(at)gmail(dot)com> wrote:

> Hi,
>
> I'm using Hibernate to perform SELECT, INSERT queries over a postgresql
> database server 9.2.7 version. I'm seeing ROLLBACK, S_2 queries being run
> after SELECT for which the client is consuming 20-30ms to send the ACK. I
> understand this is the extended query protocol feature of the v3 JDBC
> driver. And for the INSERT query there's a COMMIT being called for which
> the
> server responds immediately but again the client takes another 20-30ms to
> send the ACK.
>
> I think the problem can be solved by switching to protocolVersion to 2 (It
> was mentioned as a solution in one of the threads but anyways didn't work
> for me). But I guess this should be the last resort.
>
> So the question is, is there a way to make my client not wait to send the
> ACK and make it asynchronous so that my round-trip time will be less.
> Basically I want to know if I'm making a blocking call in my hibernate
> client.
>
> Surprisingly by running the same client on a 9.2.4 postgresql server these
> calls seem to be asynchronous and I'm getting much better RTT. Does it mean
> that the server can control whether client can be asynchronous or not?
>
> I'd very much appreciate your help on this.
>
> Thanks.
>
>
>
> --
> View this message in context:
> http://postgresql.1045698.n5.nabble.com/Hibernate-over-postgresql-tp5806233.html
> Sent from the PostgreSQL - jdbc mailing list archive at Nabble.com.
>
>
> --
> Sent via pgsql-jdbc mailing list (pgsql-jdbc(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-jdbc
>

In response to

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message amithbm 2014-06-09 08:27:35 Re: Hibernate over postgresql
Previous Message amithbm 2014-06-05 17:52:05 Hibernate over postgresql