YARN-5905. Update the RM webapp host that is reported as part of Federation membership to current primary RM's IP.
(cherry picked from commit e0f0e7afed
)
This commit is contained in:
parent
4128c9522d
commit
78032e51d9
|
@ -177,8 +177,8 @@ public class FederationStateStoreService extends AbstractService
|
|||
config.getSocketAddr(YarnConfiguration.RM_ADMIN_ADDRESS,
|
||||
YarnConfiguration.DEFAULT_RM_ADMIN_ADDRESS,
|
||||
YarnConfiguration.DEFAULT_RM_ADMIN_PORT));
|
||||
String webAppAddress =
|
||||
WebAppUtils.getResolvedRemoteRMWebAppURLWithoutScheme(config);
|
||||
String webAppAddress = getServiceAddress(NetUtils
|
||||
.createSocketAddr(WebAppUtils.getRMWebAppURLWithScheme(config)));
|
||||
|
||||
SubClusterInfo subClusterInfo = SubClusterInfo.newInstance(subClusterId,
|
||||
amRMAddress, clientRMAddress, rmAdminAddress, webAppAddress,
|
||||
|
|
|
@ -19,6 +19,7 @@ package org.apache.hadoop.yarn.server.resourcemanager.federation;
|
|||
|
||||
import java.io.IOException;
|
||||
import java.io.StringReader;
|
||||
import java.net.UnknownHostException;
|
||||
|
||||
import javax.xml.bind.JAXBException;
|
||||
|
||||
|
@ -157,12 +158,20 @@ public class TestFederationRMStateStoreService {
|
|||
}
|
||||
|
||||
private String checkSubClusterInfo(SubClusterState state)
|
||||
throws YarnException {
|
||||
throws YarnException, UnknownHostException {
|
||||
Assert.assertNotNull(stateStore.getSubCluster(request));
|
||||
SubClusterInfo response =
|
||||
stateStore.getSubCluster(request).getSubClusterInfo();
|
||||
Assert.assertEquals(state, response.getState());
|
||||
Assert.assertTrue(response.getLastHeartBeat() >= lastHearbeatTS);
|
||||
String expectedAddress =
|
||||
(response.getClientRMServiceAddress().split(":"))[0];
|
||||
Assert.assertEquals(expectedAddress,
|
||||
(response.getAMRMServiceAddress().split(":"))[0]);
|
||||
Assert.assertEquals(expectedAddress,
|
||||
(response.getRMAdminServiceAddress().split(":"))[0]);
|
||||
Assert.assertEquals(expectedAddress,
|
||||
(response.getRMWebServiceAddress().split(":"))[0]);
|
||||
lastHearbeatTS = response.getLastHeartBeat();
|
||||
return response.getCapability();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue