Re: JDBC autocommit versus own commits performance

From: Gunnar R|nning <gunnar(at)candleweb(dot)no>
To: "David Wall" <d(dot)wall(at)computer(dot)org>
Cc: <pgsql-interfaces(at)postgresql(dot)org>, pgsql-jdbc(at)postgresql(dot)org
Subject: Re: JDBC autocommit versus own commits performance
Date: 2001-03-13 11:38:51
Message-ID: x6puflucdw.fsf@thor.candleweb.no
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces pgsql-jdbc

[CC to the jdbc list]

"David Wall" <d(dot)wall(at)computer(dot)org> writes:

> [1 <text/plain; iso-8859-1 (quoted-printable)>]
> I'm using Postgresql 7.1beta4 with JDBC, and I was wondering if I should go to the trouble of modifying my connection pool to manage two pools, once with setAutoCommit(false) and the other with setAutoCommit(true).
>
> As it is, I turne off auto commit since in my transaction processing, I need to control the commit/rollback.
>
> But, there are also a lot of cases where I'm doing a simple query and I don't need transaction isolation, per se. Is the performance better if I use auto-commit than if I SELECT and do a commit() myself? And is there any benefit to doing a rollback on a select instead of a commit, since nothing changed?
>
> Would there be a benefit with auto commit off if I had to do several different SELECTs, since I'd only have to do one commit at the end instead of the autocommits after each step?
>

I've been wondering the same thing myself, but haven't gotten around to
test performance implications of different configurations. If you do any
testing, it would be nice if you could share your data.

Having two pools implies that you either have to use more backend processes
though(if you don't reduce the size of the pools). This may or may not be
an issue depending on the OS of your backend.

You could of course also just create different checkout methods for the
same underlying pool, but that would be mostly for convenience and not
performance - although it could be OK if your updates are few compared to
your clean queries.

regards,

Gunnar

In response to

Browse pgsql-interfaces by date

  From Date Subject
Next Message Mario Pena 2001-03-13 15:29:43 Compiling pgsql_perl5-1.9.0
Previous Message Michael Meskes 2001-03-13 10:21:07 Re: ecpg?

Browse pgsql-jdbc by date

  From Date Subject
Next Message Stuart Barlow 2001-03-13 14:52:08 serialized objects and JDBC driver
Previous Message David Wall 2001-03-13 00:18:21 JDBC autocommit versus own commits performance