Search in sources :

Example 1 with StopContainersResponseProtoOrBuilder

use of org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersResponseProtoOrBuilder in project hadoop by apache.

the class StopContainersResponsePBImpl method initFailedRequests.

private void initFailedRequests() {
    if (this.failedRequests != null) {
        return;
    }
    StopContainersResponseProtoOrBuilder p = viaProto ? proto : builder;
    List<ContainerExceptionMapProto> protoList = p.getFailedRequestsList();
    this.failedRequests = new HashMap<ContainerId, SerializedException>();
    for (ContainerExceptionMapProto ce : protoList) {
        this.failedRequests.put(convertFromProtoFormat(ce.getContainerId()), convertFromProtoFormat(ce.getException()));
    }
}
Also used : ContainerId(org.apache.hadoop.yarn.api.records.ContainerId) ContainerExceptionMapProto(org.apache.hadoop.yarn.proto.YarnServiceProtos.ContainerExceptionMapProto) SerializedException(org.apache.hadoop.yarn.api.records.SerializedException) StopContainersResponseProtoOrBuilder(org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersResponseProtoOrBuilder)

Example 2 with StopContainersResponseProtoOrBuilder

use of org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersResponseProtoOrBuilder in project hadoop by apache.

the class StopContainersResponsePBImpl method initSucceededRequests.

private void initSucceededRequests() {
    if (this.succeededRequests != null)
        return;
    StopContainersResponseProtoOrBuilder p = viaProto ? proto : builder;
    List<ContainerIdProto> list = p.getSucceededRequestsList();
    this.succeededRequests = new ArrayList<ContainerId>();
    for (ContainerIdProto c : list) {
        this.succeededRequests.add(convertFromProtoFormat(c));
    }
}
Also used : ContainerId(org.apache.hadoop.yarn.api.records.ContainerId) ContainerIdProto(org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto) StopContainersResponseProtoOrBuilder(org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersResponseProtoOrBuilder)

Aggregations

ContainerId (org.apache.hadoop.yarn.api.records.ContainerId)2 StopContainersResponseProtoOrBuilder (org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersResponseProtoOrBuilder)2 SerializedException (org.apache.hadoop.yarn.api.records.SerializedException)1 ContainerIdProto (org.apache.hadoop.yarn.proto.YarnProtos.ContainerIdProto)1 ContainerExceptionMapProto (org.apache.hadoop.yarn.proto.YarnServiceProtos.ContainerExceptionMapProto)1