Uses of Class
org.apache.hadoop.yarn.exceptions.YarnException

Packages that use YarnException
org.apache.hadoop.yarn.api   
org.apache.hadoop.yarn.conf   
org.apache.hadoop.yarn.exceptions   
org.apache.hadoop.yarn.server.api   
 

Uses of YarnException in org.apache.hadoop.yarn.api
 

Methods in org.apache.hadoop.yarn.api that throw YarnException
 AllocateResponse ApplicationMasterProtocol.allocate(AllocateRequest request)
           The main interface between an ApplicationMaster and the ResourceManager.
 CancelDelegationTokenResponse ApplicationClientProtocol.cancelDelegationToken(CancelDelegationTokenRequest request)
          Cancel an existing delegation Token.
 CancelDelegationTokenResponse ApplicationHistoryProtocol.cancelDelegationToken(CancelDelegationTokenRequest request)
          Cancel an existing delegation token.
 FinishApplicationMasterResponse ApplicationMasterProtocol.finishApplicationMaster(FinishApplicationMasterRequest request)
          The interface used by an ApplicationMaster to notify the ResourceManager about its completion (success or failed).
 KillApplicationResponse ApplicationClientProtocol.forceKillApplication(KillApplicationRequest request)
          The interface used by clients to request the ResourceManager to abort submitted application.
 GetApplicationAttemptReportResponse ApplicationClientProtocol.getApplicationAttemptReport(GetApplicationAttemptReportRequest request)
           The interface used by clients to get a report of an Application Attempt from the ResourceManager
 GetApplicationAttemptReportResponse ApplicationHistoryProtocol.getApplicationAttemptReport(GetApplicationAttemptReportRequest request)
           The interface used by clients to get a report of an Application Attempt from the ApplicationHistoryServer.
 GetApplicationAttemptsResponse ApplicationClientProtocol.getApplicationAttempts(GetApplicationAttemptsRequest request)
           The interface used by clients to get a report of all Application attempts in the cluster from the ResourceManager
 GetApplicationAttemptsResponse ApplicationHistoryProtocol.getApplicationAttempts(GetApplicationAttemptsRequest request)
           The interface used by clients to get a report of all Application attempts in the cluster from the ApplicationHistoryServer.
 GetApplicationReportResponse ApplicationClientProtocol.getApplicationReport(GetApplicationReportRequest request)
          The interface used by clients to get a report of an Application from the ResourceManager.
 GetApplicationReportResponse ApplicationHistoryProtocol.getApplicationReport(GetApplicationReportRequest request)
           The interface used by clients to get a report of an Application from the ResourceManager.
 GetApplicationsResponse ApplicationClientProtocol.getApplications(GetApplicationsRequest request)
          The interface used by clients to get a report of Applications matching the filters defined by GetApplicationsRequest in the cluster from the ResourceManager.
 GetApplicationsResponse ApplicationHistoryProtocol.getApplications(GetApplicationsRequest request)
           The interface used by clients to get a report of all Applications in the cluster from the ApplicationHistoryServer.
 GetClusterMetricsResponse ApplicationClientProtocol.getClusterMetrics(GetClusterMetricsRequest request)
          The interface used by clients to get metrics about the cluster from the ResourceManager.
 GetClusterNodesResponse ApplicationClientProtocol.getClusterNodes(GetClusterNodesRequest request)
          The interface used by clients to get a report of all nodes in the cluster from the ResourceManager.
 GetContainerReportResponse ApplicationClientProtocol.getContainerReport(GetContainerReportRequest request)
           The interface used by clients to get a report of an Container from the ResourceManager
 GetContainerReportResponse ApplicationHistoryProtocol.getContainerReport(GetContainerReportRequest request)
           The interface used by clients to get a report of an Container from the ApplicationHistoryServer.
 GetContainersResponse ApplicationClientProtocol.getContainers(GetContainersRequest request)
           The interface used by clients to get a report of Containers for an application attempt from the ResourceManager
 GetContainersResponse ApplicationHistoryProtocol.getContainers(GetContainersRequest request)
           The interface used by clients to get a report of Containers for an application attempt from the ApplciationHistoryServer.
 GetContainerStatusesResponse ContainerManagementProtocol.getContainerStatuses(GetContainerStatusesRequest request)
           The API used by the ApplicationMaster to request for current statuses of Containers from the NodeManager.
 GetDelegationTokenResponse ApplicationClientProtocol.getDelegationToken(GetDelegationTokenRequest request)
          The interface used by clients to get delegation token, enabling the containers to be able to talk to the service using those tokens.
 GetDelegationTokenResponse ApplicationHistoryProtocol.getDelegationToken(GetDelegationTokenRequest request)
           The interface used by clients to get delegation token, enabling the containers to be able to talk to the service using those tokens.
 GetNewApplicationResponse ApplicationClientProtocol.getNewApplication(GetNewApplicationRequest request)
          The interface used by clients to obtain a new ApplicationId for submitting new applications.
 GetQueueInfoResponse ApplicationClientProtocol.getQueueInfo(GetQueueInfoRequest request)
          The interface used by clients to get information about queues from the ResourceManager.
 GetQueueUserAclsInfoResponse ApplicationClientProtocol.getQueueUserAcls(GetQueueUserAclsInfoRequest request)
          The interface used by clients to get information about queue acls for current user from the ResourceManager.
 MoveApplicationAcrossQueuesResponse ApplicationClientProtocol.moveApplicationAcrossQueues(MoveApplicationAcrossQueuesRequest request)
          Move an application to a new queue.
 RegisterApplicationMasterResponse ApplicationMasterProtocol.registerApplicationMaster(RegisterApplicationMasterRequest request)
           The interface used by a new ApplicationMaster to register with the ResourceManager.
 RenewDelegationTokenResponse ApplicationClientProtocol.renewDelegationToken(RenewDelegationTokenRequest request)
          Renew an existing delegation Token.
 RenewDelegationTokenResponse ApplicationHistoryProtocol.renewDelegationToken(RenewDelegationTokenRequest request)
          Renew an existing delegation token.
 StartContainersResponse ContainerManagementProtocol.startContainers(StartContainersRequest request)
           The ApplicationMaster provides a list of StartContainerRequests to a NodeManager to start Containers allocated to it using this interface.
 StopContainersResponse ContainerManagementProtocol.stopContainers(StopContainersRequest request)
           The ApplicationMaster requests a NodeManager to stop a list of Containers allocated to it using this interface.
 SubmitApplicationResponse ApplicationClientProtocol.submitApplication(SubmitApplicationRequest request)
          The interface used by clients to submit a new application to the ResourceManager.
 

Uses of YarnException in org.apache.hadoop.yarn.conf
 

Methods in org.apache.hadoop.yarn.conf that throw YarnException
abstract  InputStream ConfigurationProvider.getConfigurationInputStream(org.apache.hadoop.conf.Configuration bootstrapConf, String name)
          Opens an InputStream at the indicated file
 

Uses of YarnException in org.apache.hadoop.yarn.exceptions
 

Subclasses of YarnException in org.apache.hadoop.yarn.exceptions
 class ApplicationAttemptNotFoundException
          This exception is thrown on (GetApplicationAttemptReportRequest) API when the Application Attempt doesn't exist in Application History Server
 class ApplicationIdNotProvidedException
          Exception to be thrown when Client submit an application without providing ApplicationId in ApplicationSubmissionContext.
 class ApplicationNotFoundException
          This exception is thrown on (GetApplicationReportRequest) API when the Application doesn't exist in RM and AHS
 class ContainerNotFoundException
          This exception is thrown on (GetContainerReportRequest) API when the container doesn't exist in AHS
 class InvalidApplicationMasterRequestException
          This exception is thrown when an ApplicationMaster asks for resources by calling ApplicationMasterProtocol.allocate(AllocateRequest) or tries to unregister by calling ApplicationMasterProtocol.finishApplicationMaster(FinishApplicationMasterRequest) API without first registering by calling ApplicationMasterProtocol.registerApplicationMaster(RegisterApplicationMasterRequest) or if it tries to register more than once.
 class InvalidAuxServiceException
          This exception is thrown by a NodeManager that is rejecting start-container requests via ContainerManagementProtocol.startContainers(StartContainersRequest) for auxservices does not exist.
 class InvalidContainerException
          This exception is thrown by a NodeManager that is rejecting start-container requests via ContainerManagementProtocol.startContainers(StartContainersRequest) for containers allocated by a previous instance of the RM.
 class InvalidContainerReleaseException
          This exception is thrown when an Application Master tries to release containers not belonging to it using ApplicationMasterProtocol.allocate(AllocateRequest) API.
 class InvalidResourceBlacklistRequestException
          This exception is thrown when an application provides an invalid ResourceBlacklistRequest specification for blacklisting of resources in ApplicationMasterProtocol.allocate(AllocateRequest) API.
 class InvalidResourceRequestException
          This exception is thrown when a resource requested via ResourceRequest in the ApplicationMasterProtocol.allocate(AllocateRequest) API is out of the range of the configured lower and upper limits on resources.
 class NMNotYetReadyException
          This exception is thrown on ContainerManagementProtocol.startContainers(StartContainersRequest) API when an NM starts from scratch but has not yet connected with RM.
 

Uses of YarnException in org.apache.hadoop.yarn.server.api
 

Methods in org.apache.hadoop.yarn.server.api that throw YarnException
 RefreshAdminAclsResponse ResourceManagerAdministrationProtocol.refreshAdminAcls(RefreshAdminAclsRequest request)
           
 RefreshNodesResponse ResourceManagerAdministrationProtocol.refreshNodes(RefreshNodesRequest request)
           
 RefreshQueuesResponse ResourceManagerAdministrationProtocol.refreshQueues(RefreshQueuesRequest request)
           
 RefreshServiceAclsResponse ResourceManagerAdministrationProtocol.refreshServiceAcls(RefreshServiceAclsRequest request)
           
 RefreshSuperUserGroupsConfigurationResponse ResourceManagerAdministrationProtocol.refreshSuperUserGroupsConfiguration(RefreshSuperUserGroupsConfigurationRequest request)
           
 RefreshUserToGroupsMappingsResponse ResourceManagerAdministrationProtocol.refreshUserToGroupsMappings(RefreshUserToGroupsMappingsRequest request)
           
 UpdateNodeResourceResponse ResourceManagerAdministrationProtocol.updateNodeResource(UpdateNodeResourceRequest request)
          The interface used by admin to update nodes' resources to the ResourceManager
 



Copyright © 2014 Apache Software Foundation. All Rights Reserved.