You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/protocolrecords/FinishApplicationMasterRequest.java
+16-5Lines changed: 16 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -100,11 +100,22 @@ public static FinishApplicationMasterRequest newInstance(
100
100
publicabstractStringgetTrackingUrl();
101
101
102
102
/**
103
-
* Set the <em>tracking URL</em>for the <code>ApplicationMaster</code>
104
-
* This url if contains scheme then that will be used by resource manager
105
-
* web application proxy otherwise it will default to http.
106
-
* @param url <em>tracking URL</em>for the
107
-
* <code>ApplicationMaster</code>
103
+
* Set the <em>final tracking URL</em>for the <code>ApplicationMaster</code>.
104
+
* This is the web-URL to which ResourceManager or web-application proxy will
105
+
* redirect client/users once the application is finished and the
106
+
* <code>ApplicationMaster</code> is gone.
107
+
* <p>
108
+
* If the passed url has a scheme then that will be used by the
109
+
* ResourceManager and web-application proxy, otherwise the scheme will
110
+
* default to http.
111
+
* </p>
112
+
* <p>
113
+
* Empty, null, "N/A" strings are all valid besides a real URL. In case an url
114
+
* isn't explicitly passed, it defaults to "N/A" on the ResourceManager.
115
+
* <p>
116
+
*
117
+
* @param url
118
+
* <em>tracking URL</em>for the <code>ApplicationMaster</code>
Copy file name to clipboardExpand all lines: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/protocolrecords/RegisterApplicationMasterRequest.java
+16-5Lines changed: 16 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -112,11 +112,22 @@ public static RegisterApplicationMasterRequest newInstance(String host,
112
112
publicabstractStringgetTrackingUrl();
113
113
114
114
/**
115
-
* Set the <em>tracking URL</em> for the <code>ApplicationMaster</code>.
116
-
* This url if contains scheme then that will be used by resource manager
117
-
* web application proxy otherwise it will default to http.
118
-
* @param trackingUrl <em>tracking URL</em> for the
119
-
* <code>ApplicationMaster</code>
115
+
* Set the <em>tracking URL</em>for the <code>ApplicationMaster</code> while
116
+
* it is running. This is the web-URL to which ResourceManager or
117
+
* web-application proxy will redirect client/users while the application and
118
+
* the <code>ApplicationMaster</code> are still running.
119
+
* <p>
120
+
* If the passed url has a scheme then that will be used by the
121
+
* ResourceManager and web-application proxy, otherwise the scheme will
122
+
* default to http.
123
+
* </p>
124
+
* <p>
125
+
* Empty, null, "N/A" strings are all valid besides a real URL. In case an url
126
+
* isn't explicitly passed, it defaults to "N/A" on the ResourceManager.
127
+
* <p>
128
+
*
129
+
* @param trackingUrl
130
+
* <em>tracking URL</em>for the <code>ApplicationMaster</code>
Copy file name to clipboardExpand all lines: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/rmapp/attempt/RMAppAttemptImpl.java
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -994,7 +994,7 @@ public void transition(RMAppAttemptImpl appAttempt,
Copy file name to clipboardExpand all lines: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/rmapp/attempt/TestRMAppAttemptImpl.java
Copy file name to clipboardExpand all lines: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/rmapp/attempt/TestRMAppAttemptTransitions.java
0 commit comments