how to modify connection socket timeout

Поиск
Список
Период
Сортировка
От Peirong Feng (pefeng)
Тема how to modify connection socket timeout
Дата
Msg-id C7610190419B9C4FB4D86381A5A1CCE001E56E86@xmb-sjc-23c.amer.cisco.com
обсуждение исходный текст
Список 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 по дате отправления:

Предыдущее
От: Oliver Jowett
Дата:
Сообщение: 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\":
Следующее
От: Simon Riggs
Дата:
Сообщение: Re: Deadlock detection