Uses of Class
org.apache.hadoop.yarn.api.records.ApplicationReport

Packages that use ApplicationReport
org.apache.hadoop.yarn.api.protocolrecords   
org.apache.hadoop.yarn.api.records   
org.apache.hadoop.yarn.client.api   
 

Uses of ApplicationReport in org.apache.hadoop.yarn.api.protocolrecords
 

Methods in org.apache.hadoop.yarn.api.protocolrecords that return ApplicationReport
abstract  ApplicationReport GetApplicationReportResponse.getApplicationReport()
          Get the ApplicationReport for the application.
 

Methods in org.apache.hadoop.yarn.api.protocolrecords that return types with arguments of type ApplicationReport
abstract  List<ApplicationReport> GetApplicationsResponse.getApplicationList()
          Get ApplicationReport for applications.
 

Methods in org.apache.hadoop.yarn.api.protocolrecords with parameters of type ApplicationReport
static GetApplicationReportResponse GetApplicationReportResponse.newInstance(ApplicationReport ApplicationReport)
           
abstract  void GetApplicationReportResponse.setApplicationReport(ApplicationReport ApplicationReport)
           
 

Method parameters in org.apache.hadoop.yarn.api.protocolrecords with type arguments of type ApplicationReport
static GetApplicationsResponse GetApplicationsResponse.newInstance(List<ApplicationReport> applications)
           
abstract  void GetApplicationsResponse.setApplicationList(List<ApplicationReport> applications)
           
 

Uses of ApplicationReport in org.apache.hadoop.yarn.api.records
 

Methods in org.apache.hadoop.yarn.api.records that return ApplicationReport
static ApplicationReport ApplicationReport.newInstance(ApplicationId applicationId, ApplicationAttemptId applicationAttemptId, String user, String queue, String name, String host, int rpcPort, Token clientToAMToken, YarnApplicationState state, String diagnostics, String url, long startTime, long finishTime, FinalApplicationStatus finalStatus, ApplicationResourceUsageReport appResources, String origTrackingUrl, float progress, String applicationType, Token amRmToken)
           
 

Methods in org.apache.hadoop.yarn.api.records that return types with arguments of type ApplicationReport
abstract  List<ApplicationReport> QueueInfo.getApplications()
          Get the running applications of the queue.
 

Method parameters in org.apache.hadoop.yarn.api.records with type arguments of type ApplicationReport
static QueueInfo QueueInfo.newInstance(String queueName, float capacity, float maximumCapacity, float currentCapacity, List<QueueInfo> childQueues, List<ApplicationReport> applications, QueueState queueState)
           
abstract  void QueueInfo.setApplications(List<ApplicationReport> applications)
           
 

Uses of ApplicationReport in org.apache.hadoop.yarn.client.api
 

Methods in org.apache.hadoop.yarn.client.api that return ApplicationReport
abstract  ApplicationReport YarnClient.getApplicationReport(ApplicationId appId)
           Get a report of the given Application.
abstract  ApplicationReport AHSClient.getApplicationReport(ApplicationId appId)
           Get a report of the given Application.
 

Methods in org.apache.hadoop.yarn.client.api that return types with arguments of type ApplicationReport
abstract  List<ApplicationReport> YarnClient.getApplications()
           Get a report (ApplicationReport) of all Applications in the cluster.
abstract  List<ApplicationReport> AHSClient.getApplications()
           Get a report (ApplicationReport) of all Applications in the cluster.
abstract  List<ApplicationReport> YarnClient.getApplications(EnumSet<YarnApplicationState> applicationStates)
           Get a report (ApplicationReport) of Applications matching the given application states in the cluster.
abstract  List<ApplicationReport> YarnClient.getApplications(Set<String> applicationTypes)
           Get a report (ApplicationReport) of Applications matching the given application types in the cluster.
abstract  List<ApplicationReport> YarnClient.getApplications(Set<String> applicationTypes, EnumSet<YarnApplicationState> applicationStates)
           Get a report (ApplicationReport) of Applications matching the given application types and application states in the cluster.
 



Copyright © 2014 Apache Software Foundation. All Rights Reserved.