本文整理汇总了Java中org.apache.hadoop.yarn.api.records.Container.setId方法的典型用法代码示例。如果您正苦于以下问题:Java Container.setId方法的具体用法?Java Container.setId怎么用?Java Container.setId使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.hadoop.yarn.api.records.Container
的用法示例。
在下文中一共展示了Container.setId方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: storeAttempt
import org.apache.hadoop.yarn.api.records.Container; //导入方法依赖的package包/类
protected ContainerId storeAttempt(RMStateStore store,
ApplicationAttemptId attemptId,
String containerIdStr, Token<AMRMTokenIdentifier> appToken,
SecretKey clientTokenMasterKey, TestDispatcher dispatcher)
throws Exception {
RMAppAttemptMetrics mockRmAppAttemptMetrics =
mock(RMAppAttemptMetrics.class);
Container container = new ContainerPBImpl();
container.setId(ConverterUtils.toContainerId(containerIdStr));
RMAppAttempt mockAttempt = mock(RMAppAttempt.class);
when(mockAttempt.getAppAttemptId()).thenReturn(attemptId);
when(mockAttempt.getMasterContainer()).thenReturn(container);
when(mockAttempt.getAMRMToken()).thenReturn(appToken);
when(mockAttempt.getClientTokenMasterKey())
.thenReturn(clientTokenMasterKey);
when(mockAttempt.getRMAppAttemptMetrics())
.thenReturn(mockRmAppAttemptMetrics);
when(mockRmAppAttemptMetrics.getAggregateAppResourceUsage())
.thenReturn(new AggregateAppResourceUsage(0, 0, 0));
dispatcher.attemptId = attemptId;
store.storeNewApplicationAttempt(mockAttempt);
waitNotify(dispatcher);
return container.getId();
}
示例2: newContainerInstance
import org.apache.hadoop.yarn.api.records.Container; //导入方法依赖的package包/类
@SuppressWarnings("deprecation")
private Container newContainerInstance(int id, Priority priority,
Resource capability, String hostName) throws IOException {
HPCCommandExecutor.setJobState(id, "assigned", conf);
NodeId nodeId = NodeId.newInstance(hostName, 0);
Container container = Records.newRecord(Container.class);
container.setNodeId(nodeId);
container.setPriority(priority);
container.setResource(capability);
container.setId(ContainerId.newInstance(appAttemptId, ++containerId));
Token token = Token.newInstance(nodeId.toString().getBytes(),
nodeId.toString(), nodeId.toString().getBytes(), nodeId.toString());
byte[] bytes = container.getId().toString().getBytes();
ByteBuffer buffer = ByteBuffer.allocate(bytes.length);
buffer.put(bytes);
token.setIdentifier(buffer);
container.setContainerToken(token);
container.setNodeHttpAddress(hostName + ":0");
LOG.info("Allocated container " + container.getId() + " for Job id:" + id);
return container;
}
示例3: newContainerInstance
import org.apache.hadoop.yarn.api.records.Container; //导入方法依赖的package包/类
private Container newContainerInstance(int id, Priority priority,
Resource capability, String hostName) throws IOException {
NodeId nodeId = NodeId.newInstance(hostName, 0);
Container container = Records.newRecord(Container.class);
container.setNodeId(nodeId);
container.setPriority(priority);
container.setResource(capability);
container.setId(ContainerId.newContainerId(appAttemptId, ++containerId));
Token token = Token.newInstance(nodeId.toString().getBytes(),
nodeId.toString(), nodeId.toString().getBytes(), nodeId.toString());
byte[] bytes = container.getId().toString().getBytes();
ByteBuffer buffer = ByteBuffer.allocate(bytes.length);
buffer.put(bytes);
token.setIdentifier(buffer);
container.setContainerToken(token);
container.setNodeHttpAddress(hostName + ":0");
return container;
}
示例4: newContainer
import org.apache.hadoop.yarn.api.records.Container; //导入方法依赖的package包/类
public static Container newContainer(ContainerId containerId, NodeId nodeId,
String nodeHttpAddress, Resource resource, Priority priority,
Token containerToken) {
Container container = recordFactory.newRecordInstance(Container.class);
container.setId(containerId);
container.setNodeId(nodeId);
container.setNodeHttpAddress(nodeHttpAddress);
container.setResource(resource);
container.setPriority(priority);
container.setContainerToken(containerToken);
return container;
}
示例5: handle
import org.apache.hadoop.yarn.api.records.Container; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
@Override
public void handle(ContainerAllocatorEvent event) {
if (event.getType() == ContainerAllocator.EventType.CONTAINER_REQ) {
LOG.info("Processing the event " + event.toString());
// Assign the same container ID as the AM
ContainerId cID =
ContainerId.newContainerId(getContext().getApplicationAttemptId(),
this.containerId.getContainerId());
Container container = recordFactory.newRecordInstance(Container.class);
container.setId(cID);
NodeId nodeId = NodeId.newInstance(this.nmHost, this.nmPort);
container.setNodeId(nodeId);
container.setContainerToken(null);
container.setNodeHttpAddress(this.nmHost + ":" + this.nmHttpPort);
// send the container-assigned event to task attempt
if (event.getAttemptID().getTaskId().getTaskType() == TaskType.MAP) {
JobCounterUpdateEvent jce =
new JobCounterUpdateEvent(event.getAttemptID().getTaskId()
.getJobId());
// TODO Setting OTHER_LOCAL_MAP for now.
jce.addCounterUpdate(JobCounter.OTHER_LOCAL_MAPS, 1);
eventHandler.handle(jce);
}
eventHandler.handle(new TaskAttemptContainerAssignedEvent(
event.getAttemptID(), container, applicationACLs));
}
}