how to modify connection socket timeout - Mailing list pgsql-jdbc

From Peirong Feng (pefeng)
Subject how to modify connection socket timeout
Date
Msg-id C7610190419B9C4FB4D86381A5A1CCE001E56E86@xmb-sjc-23c.amer.cisco.com
Whole thread Raw
List pgsql-jdbc
Hi there,

It seems that the socket inside the connections returned by jdbc driver
has a fixed timeout value (30 seconds). Is there anyway we can set the
timeout for these sockets?

            Jdbc3PoolingDataSource dataSource = new
Jdbc3PoolingDataSource();
            dataSource.setDataSourceName("Test Source");
            dataSource.setServerName(REMOTE_HOST_);
            dataSource.setDatabaseName(DB_NAME);
            dataSource.setUser(DB_USER_);
            dataSource.setPassword(DB_PWD_);
            dataSource.setInitialConnections(INITIAL_CONNECTION_);
            dataSource.setMaxConnections(MAX_CONNECTION_);
            try{
                dataSource.setLoginTimeout(REMOTE_CONNECTION_TIMEOUT_);
            }catch(SQLException sqle){
                logger.warning(sqle.getMessage());
            }

The issue here is that once the pool is initialized and then we unplug
the cable, the connections inside pool don't realize that the connection
is gone and still timeout in 30 seconds.

Thanks.
Peirong


pgsql-jdbc by date:

Previous
From: Oliver Jowett
Date:
Subject: Re: Strings with null characters produce exceptions when selectedor inserted. Attempts to select messages with null bytes produces "ERROR:insufficient data left in message". And inserting produces "ERROR: invalidbyte sequence for encoding \"UTF8\":
Next
From: Simon Riggs
Date:
Subject: Re: Deadlock detection