Re: Exception in DriverManager.getConnection creates multiple connections in SYN_SEND state

Поиск
Список
Период
Сортировка
От Sumit Pandya
Тема Re: Exception in DriverManager.getConnection creates multiple connections in SYN_SEND state
Дата
Msg-id 000301cb79a4$d1e7fbf0$3902a8c0@elitecore.com
обсуждение исходный текст
Ответ на Exception in DriverManager.getConnection creates multiple connections in SYN_SEND state  (Emanuel Freitas <ejsfreitas@gmail.com>)
Ответы Re: Exception in DriverManager.getConnection creates multiple connections in SYN_SEND state  (Lew <noone@lewscanon.com>)
Список pgsql-jdbc

Dear Emanuel,

            You should try with JDBC Connection Pooling. There are great tutorials are available. Using Connection Pool generally improves performance by 3x.

 


From: Emanuel Freitas [mailto:ejsfreitas@gmail.com]
Sent: Friday, October 29, 2010 7:52 PM
To: pgsql-jdbc@postgresql.org
Subject: Exception in DriverManager.getConnection creates multiple connections in SYN_SEND state

 

Hello,

 

I'm running a server that receives approximately 300 requests per second. For each request I need to do some operations in a database. So, when I receive a request i check if there is any active connection to the database and if not i create one. The code for create the connection is something like this:

 

private Connection initConn() {

            try {

                        Class.forName("org.postgresql.Driver");

            } catch (ClassNotFoundException cnfe) {

                        System.err.println("Error on Driver");

                        return null;

    }

           

            try {

                        Connection db = DriverManager.getConnection("jdbc:postgresql://192.168.1.2:5432/test?loginTimeout=3", "test", "1234");

                        return db;

           

            } catch (SQLException sqle) {

                                    System.err.println("Error on Connection");

                                    return null;

                        }

}

 

 

If the database host is accessible the getConnection method works and I return the connection, on the other hand, if for some reason the host is not accessible I get a SQLException after 3 seconds (loginTimeout). That's exactly what i want to do. 

The problem is, for each time it executes the "getConnection" method one connection to the database is created and if the host is not accessible the connection stays in SYN_SENT state for alot of time... 

As I receive alot of requests per second these connections are created until it reaches the max connections allowed by the SO (linux). 

 

Can you tell me what I'm doing wrong or what can I do to prevent this?

 

Thank You!

 

 

В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Emanuel Freitas
Дата:
Сообщение: Exception in DriverManager.getConnection creates multiple connections in SYN_SEND state
Следующее
От: Lew
Дата:
Сообщение: Re: Exception in DriverManager.getConnection creates multiple connections in SYN_SEND state