use of org.apache.hadoop.yarn.proto.YarnServerNodemanagerRecoveryProtos.ContainerManagerApplicationProto in project hadoop by apache.
the class NMMemoryStateStoreService method storeApplication.
@Override
public synchronized void storeApplication(ApplicationId appId, ContainerManagerApplicationProto proto) throws IOException {
ContainerManagerApplicationProto protoCopy = ContainerManagerApplicationProto.parseFrom(proto.toByteString());
apps.put(appId, protoCopy);
}
Aggregations