org.apache.hadoop.yarn.api.protocolrecords
Class AllocateResponse

java.lang.Object
  extended by org.apache.hadoop.yarn.api.protocolrecords.AllocateResponse

@InterfaceAudience.Public
@InterfaceStability.Stable
public abstract class AllocateResponse
extends Object

The response sent by the ResourceManager the ApplicationMaster during resource negotiation.

The response, includes:

See Also:
ApplicationMasterProtocol.allocate(AllocateRequest)

Constructor Summary
AllocateResponse()
           
 
Method Summary
abstract  List<Container> getAllocatedContainers()
          Get the list of newly allocated Container by the ResourceManager.
abstract  AMCommand getAMCommand()
          If the ResourceManager needs the ApplicationMaster to take some action then it will send an AMCommand to the ApplicationMaster.
abstract  Resource getAvailableResources()
          Get the available headroom for resources in the cluster for the application.
abstract  List<ContainerStatus> getCompletedContainersStatuses()
          Get the list of completed containers' statuses.
abstract  List<org.apache.hadoop.yarn.api.records.ContainerResourceDecrease> getDecreasedContainers()
          Get the list of newly decreased containers by NodeManager
abstract  List<org.apache.hadoop.yarn.api.records.ContainerResourceIncrease> getIncreasedContainers()
          Get the list of newly increased containers by ResourceManager
abstract  List<NMToken> getNMTokens()
          Get the list of NMTokens required for communicating with NM.
abstract  int getNumClusterNodes()
          Get the number of hosts available on the cluster.
abstract  PreemptionMessage getPreemptionMessage()
          Get the description of containers owned by the AM, but requested back by the cluster.
abstract  int getResponseId()
          Get the last response id.
abstract  List<NodeReport> getUpdatedNodes()
          Get the list of updated NodeReports.
static AllocateResponse newInstance(int responseId, List<ContainerStatus> completedContainers, List<Container> allocatedContainers, List<NodeReport> updatedNodes, Resource availResources, AMCommand command, int numClusterNodes, PreemptionMessage preempt, List<NMToken> nmTokens)
           
static AllocateResponse newInstance(int responseId, List<ContainerStatus> completedContainers, List<Container> allocatedContainers, List<NodeReport> updatedNodes, Resource availResources, AMCommand command, int numClusterNodes, PreemptionMessage preempt, List<NMToken> nmTokens, List<org.apache.hadoop.yarn.api.records.ContainerResourceIncrease> increasedContainers, List<org.apache.hadoop.yarn.api.records.ContainerResourceDecrease> decreasedContainers)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AllocateResponse

public AllocateResponse()
Method Detail

newInstance

@InterfaceAudience.Public
@InterfaceStability.Stable
public static AllocateResponse newInstance(int responseId,
                                                                                              List<ContainerStatus> completedContainers,
                                                                                              List<Container> allocatedContainers,
                                                                                              List<NodeReport> updatedNodes,
                                                                                              Resource availResources,
                                                                                              AMCommand command,
                                                                                              int numClusterNodes,
                                                                                              PreemptionMessage preempt,
                                                                                              List<NMToken> nmTokens)

newInstance

@InterfaceAudience.Public
@InterfaceStability.Stable
public static AllocateResponse newInstance(int responseId,
                                                                                              List<ContainerStatus> completedContainers,
                                                                                              List<Container> allocatedContainers,
                                                                                              List<NodeReport> updatedNodes,
                                                                                              Resource availResources,
                                                                                              AMCommand command,
                                                                                              int numClusterNodes,
                                                                                              PreemptionMessage preempt,
                                                                                              List<NMToken> nmTokens,
                                                                                              List<org.apache.hadoop.yarn.api.records.ContainerResourceIncrease> increasedContainers,
                                                                                              List<org.apache.hadoop.yarn.api.records.ContainerResourceDecrease> decreasedContainers)

getAMCommand

@InterfaceAudience.Public
@InterfaceStability.Stable
public abstract AMCommand getAMCommand()
If the ResourceManager needs the ApplicationMaster to take some action then it will send an AMCommand to the ApplicationMaster. See AMCommand for details on commands and actions for them.

Returns:
AMCommand if the ApplicationMaster should take action, null otherwise
See Also:
AMCommand

getResponseId

@InterfaceAudience.Public
@InterfaceStability.Stable
public abstract int getResponseId()
Get the last response id.

Returns:
last response id

getAllocatedContainers

@InterfaceAudience.Public
@InterfaceStability.Stable
public abstract List<Container> getAllocatedContainers()
Get the list of newly allocated Container by the ResourceManager.

Returns:
list of newly allocated Container

getAvailableResources

@InterfaceAudience.Public
@InterfaceStability.Stable
public abstract Resource getAvailableResources()
Get the available headroom for resources in the cluster for the application.

Returns:
limit of available headroom for resources in the cluster for the application

getCompletedContainersStatuses

@InterfaceAudience.Public
@InterfaceStability.Stable
public abstract List<ContainerStatus> getCompletedContainersStatuses()
Get the list of completed containers' statuses.

Returns:
the list of completed containers' statuses

getUpdatedNodes

@InterfaceAudience.Public
@InterfaceStability.Stable
public abstract List<NodeReport> getUpdatedNodes()
Get the list of updated NodeReports. Updates could be changes in health, availability etc of the nodes.

Returns:
The delta of updated nodes since the last response

getNumClusterNodes

@InterfaceAudience.Public
@InterfaceStability.Stable
public abstract int getNumClusterNodes()
Get the number of hosts available on the cluster.

Returns:
the available host count.

getPreemptionMessage

@InterfaceAudience.Public
@InterfaceStability.Evolving
public abstract PreemptionMessage getPreemptionMessage()

Get the description of containers owned by the AM, but requested back by the cluster. Note that the RM may have an inconsistent view of the resources owned by the AM. These messages are advisory, and the AM may elect to ignore them.

The message is a snapshot of the resources the RM wants back from the AM. While demand persists, the RM will repeat its request; applications should not interpret each message as a request for additional resources on top of previous messages. Resources requested consistently over some duration may be forcibly killed by the RM.

Returns:
A specification of the resources to reclaim from this AM.

getNMTokens

@InterfaceAudience.Public
@InterfaceStability.Stable
public abstract List<NMToken> getNMTokens()

Get the list of NMTokens required for communicating with NM. New NMTokens issued only if

1) AM is receiving first container on underlying NodeManager.
OR
2) NMToken master key rolled over in ResourceManager and AM is getting new container on the same underlying NodeManager.

AM will receive one NMToken per NM irrespective of the number of containers issued on same NM. AM is expected to store these tokens until issued a new token for the same NM.


getIncreasedContainers

@InterfaceAudience.Public
@InterfaceStability.Stable
public abstract List<org.apache.hadoop.yarn.api.records.ContainerResourceIncrease> getIncreasedContainers()
Get the list of newly increased containers by ResourceManager


getDecreasedContainers

@InterfaceAudience.Public
@InterfaceStability.Stable
public abstract List<org.apache.hadoop.yarn.api.records.ContainerResourceDecrease> getDecreasedContainers()
Get the list of newly decreased containers by NodeManager



Copyright © 2014 Apache Software Foundation. All Rights Reserved.