@InterfaceAudience.Public @InterfaceStability.Stable public abstract class RegisterApplicationMasterRequest extends Object
ApplicationMaster
to ResourceManager
on registration.
The registration includes details such as:
Constructor and Description |
---|
RegisterApplicationMasterRequest() |
Modifier and Type | Method and Description |
---|---|
abstract String |
getHost()
Get the host on which the
ApplicationMaster is
running. |
Map<Set<String>,PlacementConstraint> |
getPlacementConstraints()
Return all Placement Constraints specified at the Application level.
|
abstract int |
getRpcPort()
Get the RPC port on which the
ApplicationMaster is
responding. |
abstract String |
getTrackingUrl()
Get the tracking URL for the
ApplicationMaster . |
static RegisterApplicationMasterRequest |
newInstance(String host,
int port,
String trackingUrl)
Create a new instance of
RegisterApplicationMasterRequest . |
abstract void |
setHost(String host)
Set the host on which the
ApplicationMaster is
running. |
void |
setPlacementConstraints(Map<Set<String>,PlacementConstraint> placementConstraints)
Set Placement Constraints applicable to the
SchedulingRequest s
of this application. |
abstract void |
setRpcPort(int port)
Set the RPC port on which the
ApplicationMaster is
responding. |
abstract void |
setTrackingUrl(String trackingUrl)
Set the tracking URLfor the
ApplicationMaster while
it is running. |
@InterfaceAudience.Public @InterfaceStability.Stable public static RegisterApplicationMasterRequest newInstance(String host, int port, String trackingUrl)
RegisterApplicationMasterRequest
.
If port, trackingUrl is not used, use the following default value:
RegisterApplicationMasterRequest
@InterfaceAudience.Public @InterfaceStability.Stable public abstract String getHost()
ApplicationMaster
is
running.ApplicationMaster
is running@InterfaceAudience.Public @InterfaceStability.Stable public abstract void setHost(String host)
ApplicationMaster
is
running.host
- host on which the ApplicationMaster
is running@InterfaceAudience.Public @InterfaceStability.Stable public abstract int getRpcPort()
ApplicationMaster
is
responding.ApplicationMaster
is responding@InterfaceAudience.Public @InterfaceStability.Stable public abstract void setRpcPort(int port)
ApplicationMaster
is
responding.port
- RPC port on which the ApplicationMaster
is responding@InterfaceAudience.Public @InterfaceStability.Stable public abstract String getTrackingUrl()
ApplicationMaster
.
This url if contains scheme then that will be used by resource manager
web application proxy otherwise it will default to http.ApplicationMaster
@InterfaceAudience.Public @InterfaceStability.Stable public abstract void setTrackingUrl(String trackingUrl)
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.
trackingUrl
- tracking URLfor the ApplicationMaster
@InterfaceAudience.Public @InterfaceStability.Unstable public Map<Set<String>,PlacementConstraint> getPlacementConstraints()
PlacementConstraint
associated with the tags, i.e., each
SchedulingRequest
that has those
tags will be placed taking into account the corresponding constraint.@InterfaceAudience.Public @InterfaceStability.Unstable public void setPlacementConstraints(Map<Set<String>,PlacementConstraint> placementConstraints)
SchedulingRequest
s
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,
...
>placementConstraints
- Placement Constraint Mapping.Copyright © 2021 Apache Software Foundation. All rights reserved.