Reasonable to hold an HttpUrlConnection open indefinitely to a remote REST endpoint? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T02:46:52Z http://stackoverflow.com/feeds/question/382357 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/382357/reasonable-to-hold-an-httpurlconnection-open-indefinitely-to-a-remote-rest-endpoi 0 Reasonable to hold an HttpUrlConnection open indefinitely to a remote REST endpoint? Pete 2008-12-19T22:05:14Z 2008-12-19T22:08:03Z <p>I am looking to optimize a process that runs continually and makes frequent calls (> 1 per second on average) to an external API via a simple REST style HTTP post. One thing I've noticed is that currently, the HttpUrlConnection is created and closed for every API call, as per the following structure (non essential code and error handling removed for readability).</p> <pre><code>//every API call try { URL url = new URL("..remote_site.."); conn = (HttpURLConnection) url.openConnection(); setupConnectionOptions(conn); //sets things like timeoout and usecaches false outputWriter = new OutputStreamWriter(new BufferedOutputStream(conn.getOutputStream())); //send request } finally { conn.disconnect(); outputWriter.close(); } </code></pre> <p>I don't have extensive experience dealing with the http protocol directly, but based on common sense / knowledge of sockets in general it seems that it would be much more efficient to only create the connection once and re-use it, and only reinitialize it on a problem, to avoid the connection negotiation each time, like this:</p> <pre><code>//on startup, or error private void initializeConnection() { URL url = new URL("..remote_site.."); conn = (HttpURLConnection) url.openConnection(); setupConnectionOptions(conn); //sets things like timeoout and usecaches false } //per request try { outputWriter = new OutputStreamWriter(new BufferedOutputStream(conn.getOutputStream())); //send request } catch (IOException) { try conn.disconnect(); initializeConnection(); } finally { outputWriter.close(); } //on graceful exit conn.disconnect(); </code></pre> <p>My questions are:</p> <ul> <li>is this a reasonable optimization in general (will the speed increase be noticeable)?</li> </ul> <p>Assuming yes:</p> <ul> <li>should I reuse the output stream as well the connection?</li> <li>is it reasonable to only reinitialize connection on error, or should I do it after a certain number of requests / time?</li> </ul> http://stackoverflow.com/questions/382357/reasonable-to-hold-an-httpurlconnection-open-indefinitely-to-a-remote-rest-endpoi/382364#382364 2 Answer by Charlie Martin for Reasonable to hold an HttpUrlConnection open indefinitely to a remote REST endpoint? Charlie Martin 2008-12-19T22:08:03Z 2008-12-19T22:08:03Z <p>Basically, yes, and it saves a lot of time --- setting up a socket takes significant effort, even worse with SSL. That's why "keepalive" was implemented back in the Old Days. That's a litle bit counter to the REST philosophy, but it's a performance optimization.</p> <p>The one thing about it is that sockets are a limited resource; in a really heavy-use environment, you could end up with no sockets left for new connections. this is a Bad Thing.</p>