Class RegisterApplicationMasterRequest

java.lang.Object
org.apache.hadoop.yarn.api.protocolrecords.RegisterApplicationMasterRequest

@Public @Stable public abstract class RegisterApplicationMasterRequest extends Object
The request sent by the ApplicationMaster to ResourceManager on registration.

The registration includes details such as:

  • Hostname on which the AM is running.
  • RPC Port
  • Tracking URL
See Also:
  • Constructor Details

    • RegisterApplicationMasterRequest

      public RegisterApplicationMasterRequest()
  • Method Details

    • newInstance

      @Public @Stable public static RegisterApplicationMasterRequest newInstance(String host, int port, String trackingUrl)
      Create a new instance of RegisterApplicationMasterRequest. If port, trackingUrl is not used, use the following default value:
      • port: -1
      • trackingUrl: null
      The port is allowed to be any integer larger than or equal to -1.
      Parameters:
      host - host on which the ApplicationMaster is running.
      port - the RPC port on which the ApplicationMaster is responding.
      trackingUrl - tracking URL for the ApplicationMaster.
      Returns:
      the new instance of RegisterApplicationMasterRequest
    • getHost

      @Public @Stable public abstract String getHost()
      Get the host on which the ApplicationMaster is running.
      Returns:
      host on which the ApplicationMaster is running
    • setHost

      @Public @Stable public abstract void setHost(String host)
      Set the host on which the ApplicationMaster is running.
      Parameters:
      host - host on which the ApplicationMaster is running
    • getRpcPort

      @Public @Stable public abstract int getRpcPort()
      Get the RPC port on which the ApplicationMaster is responding.
      Returns:
      the RPC port on which the ApplicationMaster is responding
    • setRpcPort

      @Public @Stable public abstract void setRpcPort(int port)
      Set the RPC port on which the ApplicationMaster is responding.
      Parameters:
      port - RPC port on which the ApplicationMaster is responding
    • getTrackingUrl

      @Public @Stable public abstract String getTrackingUrl()
      Get the tracking URL for the ApplicationMaster. This url if contains scheme then that will be used by resource manager web application proxy otherwise it will default to http.
      Returns:
      tracking URL for the ApplicationMaster
    • setTrackingUrl

      @Public @Stable public abstract void setTrackingUrl(String trackingUrl)
      Set the tracking URLfor the ApplicationMaster while it is running. This is the web-URL to which ResourceManager or web-application proxy will redirect client/users while the application and the ApplicationMaster are still running.

      If the passed url has a scheme then that will be used by the ResourceManager and web-application proxy, otherwise the scheme will default to http.

      Empty, null, "N/A" strings are all valid besides a real URL. In case an url isn't explicitly passed, it defaults to "N/A" on the ResourceManager.

      Parameters:
      trackingUrl - tracking URLfor the ApplicationMaster
    • getPlacementConstraints

      @Public @Unstable public Map<Set<String>,PlacementConstraint> getPlacementConstraints()
      Return all Placement Constraints specified at the Application level. The mapping is from a set of allocation tags to a PlacementConstraint associated with the tags, i.e., each SchedulingRequest that has those tags will be placed taking into account the corresponding constraint.
      Returns:
      A map of Placement Constraints.
    • setPlacementConstraints

      @Public @Unstable public void setPlacementConstraints(Map<Set<String>,PlacementConstraint> placementConstraints)
      Set Placement Constraints applicable to the SchedulingRequests of this application. The mapping is from a set of allocation tags to a PlacementConstraint associated with the tags. For example: Map < <hb_regionserver> -> node_anti_affinity, <hb_regionserver, hb_master> -> rack_affinity, ... >
      Parameters:
      placementConstraints - Placement Constraint Mapping.