Package org.apache.hadoop.yarn.server.webapp.dao

Examples of org.apache.hadoop.yarn.server.webapp.dao.AppAttemptsInfo


    try {
      appAttemptReports = appContext.getApplicationAttempts(id).values();
    } catch (IOException e) {
      throw new WebApplicationException(e);
    }
    AppAttemptsInfo appAttemptsInfo = new AppAttemptsInfo();
    for (ApplicationAttemptReport appAttemptReport : appAttemptReports) {
      AppAttemptInfo appAttemptInfo = new AppAttemptInfo(appAttemptReport);
      appAttemptsInfo.add(appAttemptInfo);
    }

    return appAttemptsInfo;
  }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.yarn.server.webapp.dao.AppAttemptsInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.