From a605ff36a53a3d1283c3f6d81eb073e4a2942143 Mon Sep 17 00:00:00 2001 From: Haohui Mai Date: Wed, 4 Jan 2017 21:01:23 -0800 Subject: [PATCH] HDFS-11280. Allow WebHDFS to reuse HTTP connections to NN. Contributed by Zheng Shao. --- .../org/apache/hadoop/hdfs/web/WebHdfsFileSystem.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/web/WebHdfsFileSystem.java b/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/web/WebHdfsFileSystem.java index d4fa009790b..135eef7deda 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/web/WebHdfsFileSystem.java +++ b/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/web/WebHdfsFileSystem.java @@ -659,6 +659,8 @@ public class WebHdfsFileSystem extends FileSystem url = new URL(conn.getHeaderField("Location")); redirectHost = url.getHost() + ":" + url.getPort(); } finally { + // TODO: consider not calling conn.disconnect() to allow connection reuse + // See http://tinyurl.com/java7-http-keepalive conn.disconnect(); } } @@ -891,7 +893,9 @@ public class WebHdfsFileSystem extends FileSystem LOG.debug("Response decoding failure.", e); throw ioe; } finally { - conn.disconnect(); + // Don't call conn.disconnect() to allow connection reuse + // See http://tinyurl.com/java7-http-keepalive + conn.getInputStream().close(); } } @@ -938,6 +942,9 @@ public class WebHdfsFileSystem extends FileSystem try { validateResponse(op, conn, true); } finally { + // This is a connection to DataNode. Let's disconnect since + // there is little chance that the connection will be reused + // any time soonl conn.disconnect(); } }