本文整理汇总了Java中org.apache.hadoop.yarn.api.protocolrecords.GetClusterNodesResponse类的典型用法代码示例。如果您正苦于以下问题:Java GetClusterNodesResponse类的具体用法?Java GetClusterNodesResponse怎么用?Java GetClusterNodesResponse使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
GetClusterNodesResponse类属于org.apache.hadoop.yarn.api.protocolrecords包,在下文中一共展示了GetClusterNodesResponse类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getClusterNodes
import org.apache.hadoop.yarn.api.protocolrecords.GetClusterNodesResponse; //导入依赖的package包/类
@Override
public GetClusterNodesResponse getClusterNodes(GetClusterNodesRequest request)
throws YarnException {
GetClusterNodesResponse response =
recordFactory.newRecordInstance(GetClusterNodesResponse.class);
EnumSet<NodeState> nodeStates = request.getNodeStates();
if (nodeStates == null || nodeStates.isEmpty()) {
nodeStates = EnumSet.allOf(NodeState.class);
}
Collection<RMNode> nodes = RMServerUtils.queryRMNodes(rmContext,
nodeStates);
List<NodeReport> nodeReports = new ArrayList<NodeReport>(nodes.size());
for (RMNode nodeInfo : nodes) {
nodeReports.add(createNodeReports(nodeInfo));
}
response.setNodeReports(nodeReports);
return response;
}
示例2: run
import org.apache.hadoop.yarn.api.protocolrecords.GetClusterNodesResponse; //导入依赖的package包/类
@Override
public void run() {
EnumSet<NodeState> filter = EnumSet.of(NodeState.RUNNING);
GetClusterNodesRequest req = GetClusterNodesRequest.newInstance();
req.setNodeStates(filter);
LOG.debug("Sending cluster nodes request from first client");
try {
TimeUnit.SECONDS.sleep(1);
GetClusterNodesResponse res = client.getClusterNodes(req);
assertNotNull("Response from the first client should not be null", res);
LOG.debug("NodeReports: " + res.getNodeReports().size());
for (NodeReport nodeReport : res.getNodeReports()) {
LOG.debug("Node: " + nodeReport.getNodeId() + " Capability: " + nodeReport.getCapability());
}
} catch (Exception ex) {
LOG.error(ex, ex);
}
}
示例3: getClusterNodes
import org.apache.hadoop.yarn.api.protocolrecords.GetClusterNodesResponse; //导入依赖的package包/类
@Override
public GetClusterNodesResponse getClusterNodes(GetClusterNodesRequest request)
throws YarnException {
GetClusterNodesResponse response =
recordFactory.newRecordInstance(GetClusterNodesResponse.class);
EnumSet<NodeState> nodeStates = request.getNodeStates();
if (nodeStates == null || nodeStates.isEmpty()) {
nodeStates = EnumSet.allOf(NodeState.class);
}
Collection<RMNode> nodes = RMServerUtils.queryRMNodes(rmContext,
nodeStates);
List<NodeReport> nodeReports = new ArrayList<NodeReport>(nodes.size());
for (RMNode nodeInfo : nodes) {
nodeReports.add(createNodeReports(nodeInfo));
}
response.setNodeReports(nodeReports);
return response;
}
示例4: getClusterNodes
import org.apache.hadoop.yarn.api.protocolrecords.GetClusterNodesResponse; //导入依赖的package包/类
@Override
public GetClusterNodesResponse getClusterNodes(GetClusterNodesRequest request)
throws YarnException {
GetClusterNodesResponse response =
recordFactory.newRecordInstance(GetClusterNodesResponse.class);
EnumSet<NodeState> nodeStates = request.getNodeStates();
if (nodeStates == null || nodeStates.isEmpty()) {
nodeStates = EnumSet.allOf(NodeState.class);
}
Collection<RMNode> nodes = RMServerUtils.queryRMNodes(rmContext,
nodeStates);
List<NodeReport> nodeReports = new ArrayList<NodeReport>(nodes.size());
for (RMNode nodeInfo : nodes) {
nodeReports.add(createNodeReports(nodeInfo));
}
response.setNodeReports(nodeReports);
return response;
}
示例5: getClusterNodes
import org.apache.hadoop.yarn.api.protocolrecords.GetClusterNodesResponse; //导入依赖的package包/类
@Override
public GetClusterNodesResponse
getClusterNodes(GetClusterNodesRequest request)
throws YarnException, IOException {
GetClusterNodesRequestProto requestProto =
((GetClusterNodesRequestPBImpl) request).getProto();
try {
return new GetClusterNodesResponsePBImpl(proxy.getClusterNodes(null,
requestProto));
} catch (ServiceException e) {
RPCUtil.unwrapAndThrowException(e);
return null;
}
}
示例6: getNodeReports
import org.apache.hadoop.yarn.api.protocolrecords.GetClusterNodesResponse; //导入依赖的package包/类
@Override
public List<NodeReport> getNodeReports(NodeState... states) throws YarnException,
IOException {
EnumSet<NodeState> statesSet = (states.length == 0) ?
EnumSet.allOf(NodeState.class) : EnumSet.noneOf(NodeState.class);
for (NodeState state : states) {
statesSet.add(state);
}
GetClusterNodesRequest request = GetClusterNodesRequest
.newInstance(statesSet);
GetClusterNodesResponse response = rmClient.getClusterNodes(request);
return response.getNodeReports();
}
示例7: getClusterNodes
import org.apache.hadoop.yarn.api.protocolrecords.GetClusterNodesResponse; //导入依赖的package包/类
@Override
public GetClusterNodesResponse getClusterNodes(
GetClusterNodesRequest request)
throws YarnException {
resetStartFailoverFlag(true);
// make sure failover has been triggered
Assert.assertTrue(waittingForFailOver());
// create GetClusterNodesResponse with fake ClusterNodeLists
GetClusterNodesResponse response =
GetClusterNodesResponse.newInstance(createFakeNodeReports());
return response;
}
示例8: getClusterNodes
import org.apache.hadoop.yarn.api.protocolrecords.GetClusterNodesResponse; //导入依赖的package包/类
@Override
public GetClusterNodesResponse getClusterNodes(GetClusterNodesRequest request)
throws YarnException, IOException {
List<NodeReport> clusterNodes = appClient.getClusterNodes(request
.getNodeStates());
return GetClusterNodesResponse.newInstance(clusterNodes);
}
开发者ID:intel-hpdd,项目名称:scheduling-connector-for-hadoop,代码行数:8,代码来源:HPCApplicationClientProtocolImpl.java
示例9: checkNodeState
import org.apache.hadoop.yarn.api.protocolrecords.GetClusterNodesResponse; //导入依赖的package包/类
private void checkNodeState() throws YarnException
{
GetClusterNodesRequest request = Records.newRecord(GetClusterNodesRequest.class);
ClientRMService clientRMService = yarnCluster.getResourceManager().getClientRMService();
GetClusterNodesResponse response = clientRMService.getClusterNodes(request);
List<NodeReport> nodeReports = response.getNodeReports();
LOG.info("{}", nodeReports);
for (NodeReport nr: nodeReports) {
if (!nr.getNodeState().isUnusable()) {
return;
}
}
fail("Yarn Mini cluster should have at least one usable node.");
}
示例10: testRpcCall
import org.apache.hadoop.yarn.api.protocolrecords.GetClusterNodesResponse; //导入依赖的package包/类
@Test(timeout = 3000)
public void testRpcCall() throws Exception {
EnumSet<NodeState> filter = EnumSet.of(NodeState.RUNNING);
GetClusterNodesRequest req = GetClusterNodesRequest.newInstance();
req.setNodeStates(filter);
LOG.debug("Sending request");
GetClusterNodesResponse res = acClient.getClusterNodes(req);
LOG.debug("Got response from server");
assertNotNull("Response should not be null", res);
List<NodeReport> reports = res.getNodeReports();
LOG.debug("Printing cluster nodes report");
for (NodeReport report : reports) {
LOG.debug("NodeId: " + report.getNodeId().toString());
}
}
示例11: testResourceMgrDelegate
import org.apache.hadoop.yarn.api.protocolrecords.GetClusterNodesResponse; //导入依赖的package包/类
@Test(timeout=20000)
public void testResourceMgrDelegate() throws Exception {
/* we not want a mock of resource mgr delegate */
final ApplicationClientProtocol clientRMProtocol = mock(ApplicationClientProtocol.class);
ResourceMgrDelegate delegate = new ResourceMgrDelegate(conf) {
@Override
protected void serviceStart() throws Exception {
assertTrue(this.client instanceof YarnClientImpl);
((YarnClientImpl) this.client).setRMClient(clientRMProtocol);
}
};
/* make sure kill calls finish application master */
when(clientRMProtocol.forceKillApplication(any(KillApplicationRequest.class)))
.thenReturn(KillApplicationResponse.newInstance(true));
delegate.killApplication(appId);
verify(clientRMProtocol).forceKillApplication(any(KillApplicationRequest.class));
/* make sure getalljobs calls get all applications */
when(clientRMProtocol.getApplications(any(GetApplicationsRequest.class))).
thenReturn(recordFactory.newRecordInstance(GetApplicationsResponse.class));
delegate.getAllJobs();
verify(clientRMProtocol).getApplications(any(GetApplicationsRequest.class));
/* make sure getapplication report is called */
when(clientRMProtocol.getApplicationReport(any(GetApplicationReportRequest.class)))
.thenReturn(recordFactory.newRecordInstance(GetApplicationReportResponse.class));
delegate.getApplicationReport(appId);
verify(clientRMProtocol).getApplicationReport(any(GetApplicationReportRequest.class));
/* make sure metrics is called */
GetClusterMetricsResponse clusterMetricsResponse = recordFactory.newRecordInstance
(GetClusterMetricsResponse.class);
clusterMetricsResponse.setClusterMetrics(recordFactory.newRecordInstance(
YarnClusterMetrics.class));
when(clientRMProtocol.getClusterMetrics(any(GetClusterMetricsRequest.class)))
.thenReturn(clusterMetricsResponse);
delegate.getClusterMetrics();
verify(clientRMProtocol).getClusterMetrics(any(GetClusterMetricsRequest.class));
when(clientRMProtocol.getClusterNodes(any(GetClusterNodesRequest.class))).
thenReturn(recordFactory.newRecordInstance(GetClusterNodesResponse.class));
delegate.getActiveTrackers();
verify(clientRMProtocol).getClusterNodes(any(GetClusterNodesRequest.class));
GetNewApplicationResponse newAppResponse = recordFactory.newRecordInstance(
GetNewApplicationResponse.class);
newAppResponse.setApplicationId(appId);
when(clientRMProtocol.getNewApplication(any(GetNewApplicationRequest.class))).
thenReturn(newAppResponse);
delegate.getNewJobID();
verify(clientRMProtocol).getNewApplication(any(GetNewApplicationRequest.class));
GetQueueInfoResponse queueInfoResponse = recordFactory.newRecordInstance(
GetQueueInfoResponse.class);
queueInfoResponse.setQueueInfo(recordFactory.newRecordInstance(QueueInfo.class));
when(clientRMProtocol.getQueueInfo(any(GetQueueInfoRequest.class))).
thenReturn(queueInfoResponse);
delegate.getQueues();
verify(clientRMProtocol).getQueueInfo(any(GetQueueInfoRequest.class));
GetQueueUserAclsInfoResponse aclResponse = recordFactory.newRecordInstance(
GetQueueUserAclsInfoResponse.class);
when(clientRMProtocol.getQueueUserAcls(any(GetQueueUserAclsInfoRequest.class)))
.thenReturn(aclResponse);
delegate.getQueueAclsForCurrentUser();
verify(clientRMProtocol).getQueueUserAcls(any(GetQueueUserAclsInfoRequest.class));
}
示例12: getClusterNodes
import org.apache.hadoop.yarn.api.protocolrecords.GetClusterNodesResponse; //导入依赖的package包/类
@Override
public GetClusterNodesResponse getClusterNodes(
GetClusterNodesRequest request) throws IOException {
return null;
}
示例13: getClusterNodes
import org.apache.hadoop.yarn.api.protocolrecords.GetClusterNodesResponse; //导入依赖的package包/类
@Override
public GetClusterNodesResponse getClusterNodes(
GetClusterNodesRequest request) throws YarnException, IOException {
throw new NotImplementedException();
}