Prechádzať zdrojové kódy

YARN-1703. Fixed ResourceManager web-proxy to close connections correctly. Contributed by Rohith Sharma.

Vinod Kumar Vavilapalli 10 rokov pred
rodič
commit
198fb58776

+ 3 - 0
hadoop-yarn-project/CHANGES.txt

@@ -96,6 +96,9 @@ Release 2.7.0 - UNRELEASED
     YARN-2432. RMStateStore should process the pending events before close.
     YARN-2432. RMStateStore should process the pending events before close.
     (Varun Saxena via jianhe)
     (Varun Saxena via jianhe)
 
 
+    YARN-1703. Fixed ResourceManager web-proxy to close connections correctly.
+    (Rohith Sharma via vinodkv)
+
 Release 2.6.0 - 2014-11-18
 Release 2.6.0 - 2014-11-18
 
 
   INCOMPATIBLE CHANGES
   INCOMPATIBLE CHANGES

+ 1 - 0
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-web-proxy/src/main/java/org/apache/hadoop/yarn/server/webproxy/WebAppProxyServlet.java

@@ -166,6 +166,7 @@ public class WebAppProxyServlet extends HttpServlet {
     }
     }
     config.setLocalAddress(localAddress);
     config.setLocalAddress(localAddress);
     HttpMethod method = new GetMethod(uri.getEscapedURI());
     HttpMethod method = new GetMethod(uri.getEscapedURI());
+    method.setRequestHeader("Connection","close");
     @SuppressWarnings("unchecked")
     @SuppressWarnings("unchecked")
     Enumeration<String> names = req.getHeaderNames();
     Enumeration<String> names = req.getHeaderNames();
     while(names.hasMoreElements()) {
     while(names.hasMoreElements()) {