YARN-9581. Add support for get multiple RM webapp URLs.
Contributed by Prabhu Joseph
(cherry picked from commit f02b0e1994
)
This commit is contained in:
parent
252c3a158d
commit
860606fc67
|
@ -102,8 +102,16 @@ public class WebAppUtils {
|
|||
return func.apply(rm1Address, arg);
|
||||
} catch (Exception e) {
|
||||
if (HAUtil.isHAEnabled(conf)) {
|
||||
String rm2Address = getRMWebAppURLWithScheme(conf, 1);
|
||||
return func.apply(rm2Address, arg);
|
||||
int rms = HAUtil.getRMHAIds(conf).size();
|
||||
for (int i=1; i<rms; i++) {
|
||||
try {
|
||||
rm1Address = getRMWebAppURLWithScheme(conf, i);
|
||||
return func.apply(rm1Address, arg);
|
||||
} catch (Exception e1) {
|
||||
// ignore and try next one when RM is down
|
||||
e = e1;
|
||||
}
|
||||
}
|
||||
}
|
||||
throw e;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue