本文整理汇总了Java中org.apache.hadoop.yarn.server.utils.YarnServerBuilderUtils类的典型用法代码示例。如果您正苦于以下问题:Java YarnServerBuilderUtils类的具体用法?Java YarnServerBuilderUtils怎么用?Java YarnServerBuilderUtils使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
YarnServerBuilderUtils类属于org.apache.hadoop.yarn.server.utils包,在下文中一共展示了YarnServerBuilderUtils类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: nodeHeartbeat
import org.apache.hadoop.yarn.server.utils.YarnServerBuilderUtils; //导入依赖的package包/类
@Override
public NodeHeartbeatResponse nodeHeartbeat(NodeHeartbeatRequest request)
throws YarnException, IOException {
System.out.println("RTS receive heartbeat : "
+ System.currentTimeMillis());
labels = request.getNodeLabels();
NodeStatus nodeStatus = request.getNodeStatus();
nodeStatus.setResponseId(heartbeatID++);
NodeHeartbeatResponse nhResponse =
YarnServerBuilderUtils.newNodeHeartbeatResponse(heartbeatID,
NodeAction.NORMAL, null, null, null, null, 1000L);
// to ensure that heartbeats are sent only when required.
nhResponse.setNextHeartBeatInterval(Long.MAX_VALUE);
nhResponse.setAreNodeLabelsAcceptedByRM(labels != null);
synchronized (ResourceTrackerForLabels.class) {
receivedNMHeartbeat = true;
ResourceTrackerForLabels.class.notifyAll();
}
return nhResponse;
}
示例2: getLiveRMList
import org.apache.hadoop.yarn.server.utils.YarnServerBuilderUtils; //导入依赖的package包/类
@Override
public LiveRMsResponse getLiveRMList() {
List<ActiveNode> rmList = new ArrayList<ActiveNode>();
Map<String, Load> loads;
try {
loads = DBUtility.getAllLoads();
} catch (IOException ex) {
LOG.error(ex);
loads = new HashMap<String, Load>();
}
SortedActiveNodeList nnList = groupMembership.getActiveNamenodes();
for (ActiveNode node : nnList.getSortedActiveNodes()) {
if (loads.get(node.getHostname()) == null) {
rmList.add(new ActiveRMPBImpl(node.getId(), node.getHostname(), node.
getRpcServerIpAddress(), node.getRpcServerPort(), node.getHttpAddress(), 0));
} else {
rmList.add(new ActiveRMPBImpl(node.getId(), node.getHostname(), node.
getRpcServerIpAddress(), node.getRpcServerPort(), node.getHttpAddress(), loads.
get(node.getHostname()).getLoad()));
}
}
SortedActiveRMList sortedRmList = new SortedActiveRMList(rmList);
return YarnServerBuilderUtils.newLiveRMsResponse(sortedRmList);
}
示例3: nodeHeartbeat
import org.apache.hadoop.yarn.server.utils.YarnServerBuilderUtils; //导入依赖的package包/类
@Override
public NodeHeartbeatResponse nodeHeartbeat(NodeHeartbeatRequest request)
throws YarnException, IOException {
NodeStatus nodeStatus = request.getNodeStatus();
nodeStatus.setResponseId(heartBeatID++);
NodeHeartbeatResponse nhResponse = YarnServerBuilderUtils.
newNodeHeartbeatResponse(heartBeatID, heartBeatNodeAction, null,
null, null, null, 1000L);
nhResponse.setDiagnosticsMessage(shutDownMessage);
return nhResponse;
}
示例4: nodeHeartbeat
import org.apache.hadoop.yarn.server.utils.YarnServerBuilderUtils; //导入依赖的package包/类
@Override
public NodeHeartbeatResponse nodeHeartbeat(NodeHeartbeatRequest request)
throws YarnException, IOException {
NodeStatus nodeStatus = request.getNodeStatus();
LOG.info("Got heartbeat number " + heartBeatID);
nodeStatus.setResponseId(heartBeatID++);
NodeHeartbeatResponse nhResponse = YarnServerBuilderUtils
.newNodeHeartbeatResponse(heartBeatID, null, null,
null, null, null, 1000L);
return nhResponse;
}
示例5: nodeHeartbeat
import org.apache.hadoop.yarn.server.utils.YarnServerBuilderUtils; //导入依赖的package包/类
@Override
public NodeHeartbeatResponse nodeHeartbeat(NodeHeartbeatRequest request)
throws YarnException, IOException {
NodeStatus nodeStatus = request.getNodeStatus();
nodeStatus.setResponseId(heartBeatID++);
NodeHeartbeatResponse nhResponse = YarnServerBuilderUtils.
newNodeHeartbeatResponse(heartBeatID, heartBeatNodeAction, null,
null, null, null, null, 1000L);
nhResponse.setDiagnosticsMessage(shutDownMessage);
return nhResponse;
}
示例6: nodeHeartbeat
import org.apache.hadoop.yarn.server.utils.YarnServerBuilderUtils; //导入依赖的package包/类
@Override
public NodeHeartbeatResponse nodeHeartbeat(NodeHeartbeatRequest request)
throws YarnException, IOException {
NodeStatus nodeStatus = request.getNodeStatus();
LOG.info("Got heartbeat number " + heartBeatID);
nodeStatus.setResponseId(heartBeatID++);
NodeHeartbeatResponse nhResponse = YarnServerBuilderUtils
.newNodeHeartbeatResponse(heartBeatID, null, null,
null, null, null, null, 1000L);
return nhResponse;
}
示例7: nodeHeartbeat
import org.apache.hadoop.yarn.server.utils.YarnServerBuilderUtils; //导入依赖的package包/类
@Override
public NodeHeartbeatResponse nodeHeartbeat(NodeHeartbeatRequest request)
throws YarnException, IOException {
NodeStatus nodeStatus = request.getNodeStatus();
nodeStatus.setResponseId(heartBeatID++);
NodeHeartbeatResponse nhResponse = YarnServerBuilderUtils.
newNodeHeartbeatResponse(heartBeatID, heartBeatNodeAction, null,
null, null, null, 1000L);
nhResponse.setDiagnosticsMessage(shutDownMessage);
return nhResponse;
}