Re: [PATCH] Support for ping method. - Mailing list pgsql-jdbc

From Andrew Oliver
Subject Re: [PATCH] Support for ping method.
Date
Msg-id 444396DE.1020904@jboss.org
Whole thread Raw
In response to Re: [PATCH] Support for ping method.  (Kris Jurka <books@ejurka.com>)
List pgsql-jdbc
In a connection pool, generally what has happened is someone or
something takes the database down for maintenance and then every single
dependency downstream takes a long time to recover, or the maximum time
you're allowed to hold it has expired, or some network event has
occurred.  The JBoss connection validators let the connection pool
bounce back from database outages rather quickly.  We don't want the
server to do any undue processing (faster is better).  Mostly we'd like
to send a byte or two and get a byte or two.  If there is a more serious
outage than an invalid connection then it is likely we'll rightly get an
exception when the connection is used or re-established and that's okay.

-Andy

Kris Jurka wrote:
>
>
>> On Thu, 6 Apr 2006, Michael Barker wrote:
>>
>>> Attached is a patch that adds support for a ping method on the
>>> AbstractJdbc2Connection.  This is useful for JBoss (and other
>>> containers) where the container needs to check if the connection is
>>> alive before passing it to the caller.  Currently JBoss does a "SELECT
>>> 1", but using the new ping method there is a boost in performance.
>>> Opening and closing 1000 connections from a datasource:
>>>
>>
>> There are a number of problems with this patch.  In no particular
>> order...
>>
>
> 6) I'm not sure what guarantees ping is trying to make.  Is it solely to
> ensure that the backend is still connected or is it to ensure that the
> connection state is ready to receive new commands.  Consider the
> following as the attached test case demonstrates:
>
> conn.setAutoCommit(false);
> conn.createStatement().execute("SELECT 1/0"); // Forces transaction abort
> conn.ping(); // Returns 0 saying connection is "good".
> conn.createStatement().execute("SELECT 1"); // Fails b/c in aborted txn.
>
> If you need the stronger guarantee of transaction state validity then I
> think you could try the V2 EmptyQuery attempt on the V3 protocol as well.
>
> When JDK1.6 comes out I imagine that this will be replaced by the
> Connection.isValid method which does not seem to require anything beyond
> a current backend connection.
>
> http://download.java.net/jdk6/docs/api/java/sql/Connection.html#isValid(int)
>
>
> Kris Jurka
>
>
> ------------------------------------------------------------------------
>
> import java.sql.*;
>
> public class PingTest {
>
>     public static void main(String args[]) throws Exception {
>         Class.forName("org.postgresql.Driver");
>
>         Connection conn = DriverManager.getConnection("jdbc:postgresql://localhost:5820/jurka","jurka","");
>
>         conn.setAutoCommit(false);
>         Statement stmt = conn.createStatement();
>         try {
>             stmt.execute("SELECT 1/0");
>         } catch (SQLException sqle) {
>             sqle.printStackTrace();
>         }
>
>         System.out.println(((org.postgresql.jdbc2.AbstractJdbc2Connection)conn).ping());
>
>         stmt.execute("SELECT 1");
>     }
> }



pgsql-jdbc by date:

Previous
From: Kris Jurka
Date:
Subject: Re: [PATCH] Support for ping method.
Next
From: David Hustace
Date:
Subject: Re: thread hang on execute call