|
@@ -20,6 +20,10 @@ package org.apache.hadoop.yarn.server.resourcemanager.webapp;
|
|
|
|
|
|
import java.io.IOException;
|
|
|
import java.io.PrintWriter;
|
|
|
+import java.net.InetSocketAddress;
|
|
|
+import java.net.URI;
|
|
|
+import java.net.URISyntaxException;
|
|
|
+import java.util.Random;
|
|
|
import java.util.Set;
|
|
|
|
|
|
import javax.inject.Inject;
|
|
@@ -29,8 +33,11 @@ import javax.servlet.ServletException;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
+import org.apache.hadoop.conf.Configuration;
|
|
|
import org.apache.hadoop.http.HtmlQuoting;
|
|
|
+import org.apache.hadoop.yarn.conf.YarnConfiguration;
|
|
|
import org.apache.hadoop.yarn.server.webproxy.ProxyUriUtils;
|
|
|
+import org.apache.hadoop.yarn.webapp.YarnWebParams;
|
|
|
|
|
|
import com.google.common.collect.Sets;
|
|
|
import com.google.inject.Injector;
|
|
@@ -48,11 +55,26 @@ public class RMWebAppFilter extends GuiceContainer {
|
|
|
// define a set of URIs which do not need to do redirection
|
|
|
private static final Set<String> NON_REDIRECTED_URIS = Sets.newHashSet(
|
|
|
"/conf", "/stacks", "/logLevel", "/logs");
|
|
|
+ private String path;
|
|
|
+ private static final int BASIC_SLEEP_TIME = 5;
|
|
|
+ private static final int MAX_SLEEP_TIME = 5 * 60;
|
|
|
|
|
|
@Inject
|
|
|
- public RMWebAppFilter(Injector injector) {
|
|
|
+ public RMWebAppFilter(Injector injector, Configuration conf) {
|
|
|
super(injector);
|
|
|
this.injector=injector;
|
|
|
+ InetSocketAddress sock = YarnConfiguration.useHttps(conf)
|
|
|
+ ? conf.getSocketAddr(YarnConfiguration.RM_WEBAPP_HTTPS_ADDRESS,
|
|
|
+ YarnConfiguration.DEFAULT_RM_WEBAPP_HTTPS_ADDRESS,
|
|
|
+ YarnConfiguration.DEFAULT_RM_WEBAPP_HTTPS_PORT)
|
|
|
+ : conf.getSocketAddr(YarnConfiguration.RM_WEBAPP_ADDRESS,
|
|
|
+ YarnConfiguration.DEFAULT_RM_WEBAPP_ADDRESS,
|
|
|
+ YarnConfiguration.DEFAULT_RM_WEBAPP_PORT);
|
|
|
+
|
|
|
+ path = sock.getHostName() + ":" + Integer.toString(sock.getPort());
|
|
|
+ path = YarnConfiguration.useHttps(conf)
|
|
|
+ ? "https://" + path
|
|
|
+ : "http://" + path;
|
|
|
}
|
|
|
|
|
|
@Override
|
|
@@ -69,9 +91,11 @@ public class RMWebAppFilter extends GuiceContainer {
|
|
|
rmWebApp.checkIfStandbyRM();
|
|
|
if (rmWebApp.isStandby()
|
|
|
&& shouldRedirect(rmWebApp, uri)) {
|
|
|
- String redirectPath = rmWebApp.getRedirectPath() + uri;
|
|
|
+
|
|
|
+ String redirectPath = rmWebApp.getRedirectPath();
|
|
|
|
|
|
if (redirectPath != null && !redirectPath.isEmpty()) {
|
|
|
+ redirectPath += uri;
|
|
|
String redirectMsg =
|
|
|
"This is standby RM. Redirecting to the current active RM: "
|
|
|
+ redirectPath;
|
|
@@ -79,11 +103,40 @@ public class RMWebAppFilter extends GuiceContainer {
|
|
|
PrintWriter out = response.getWriter();
|
|
|
out.println(redirectMsg);
|
|
|
return;
|
|
|
+ } else {
|
|
|
+ boolean doRetry = true;
|
|
|
+ String retryIntervalStr =
|
|
|
+ request.getParameter(YarnWebParams.NEXT_REFRESH_INTERVAL);
|
|
|
+ int retryInterval = 0;
|
|
|
+ if (retryIntervalStr != null) {
|
|
|
+ try {
|
|
|
+ retryInterval = Integer.parseInt(retryIntervalStr.trim());
|
|
|
+ } catch (NumberFormatException ex) {
|
|
|
+ doRetry = false;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ int next = calculateExponentialTime(retryInterval);
|
|
|
+
|
|
|
+ String redirectUrl =
|
|
|
+ appendOrReplaceParamter(path + uri,
|
|
|
+ YarnWebParams.NEXT_REFRESH_INTERVAL + "=" + (retryInterval + 1));
|
|
|
+ if (redirectUrl == null || next > MAX_SLEEP_TIME) {
|
|
|
+ doRetry = false;
|
|
|
+ }
|
|
|
+ String redirectMsg =
|
|
|
+ doRetry ? "Can not find any active RM. Will retry in next " + next
|
|
|
+ + " seconds." : "There is no active RM right now.";
|
|
|
+ PrintWriter out = response.getWriter();
|
|
|
+ out.println(redirectMsg);
|
|
|
+ if (doRetry) {
|
|
|
+ response.setHeader("Refresh", next + ";url=" + redirectUrl);
|
|
|
+ response.setStatus(HttpServletResponse.SC_TEMPORARY_REDIRECT);
|
|
|
+ }
|
|
|
}
|
|
|
+ return;
|
|
|
}
|
|
|
|
|
|
super.doFilter(request, response, chain);
|
|
|
-
|
|
|
}
|
|
|
|
|
|
private boolean shouldRedirect(RMWebApp rmWebApp, String uri) {
|
|
@@ -92,4 +145,33 @@ public class RMWebAppFilter extends GuiceContainer {
|
|
|
&& !uri.startsWith(ProxyUriUtils.PROXY_BASE)
|
|
|
&& !NON_REDIRECTED_URIS.contains(uri);
|
|
|
}
|
|
|
+
|
|
|
+ private String appendOrReplaceParamter(String uri, String newQuery) {
|
|
|
+ if (uri.contains(YarnWebParams.NEXT_REFRESH_INTERVAL + "=")) {
|
|
|
+ return uri.replaceAll(YarnWebParams.NEXT_REFRESH_INTERVAL + "=[^&]+",
|
|
|
+ newQuery);
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ URI oldUri = new URI(uri);
|
|
|
+ String appendQuery = oldUri.getQuery();
|
|
|
+ if (appendQuery == null) {
|
|
|
+ appendQuery = newQuery;
|
|
|
+ } else {
|
|
|
+ appendQuery += "&" + newQuery;
|
|
|
+ }
|
|
|
+
|
|
|
+ URI newUri =
|
|
|
+ new URI(oldUri.getScheme(), oldUri.getAuthority(), oldUri.getPath(),
|
|
|
+ appendQuery, oldUri.getFragment());
|
|
|
+
|
|
|
+ return newUri.toString();
|
|
|
+ } catch (URISyntaxException e) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private static int calculateExponentialTime(int retries) {
|
|
|
+ long baseTime = BASIC_SLEEP_TIME * (1L << retries);
|
|
|
+ return (int) (baseTime * ((new Random()).nextDouble() + 0.5));
|
|
|
+ }
|
|
|
}
|