Java Code Examples for org.apache.hadoop.yarn.util.RackResolver#resolve()
The following examples show how to use
org.apache.hadoop.yarn.util.RackResolver#resolve() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ResourceTrackerService.java From hadoop with Apache License 2.0 | 2 votes |
/** * resolving the network topology. * @param hostName the hostname of this node. * @return the resolved {@link Node} for this nodemanager. */ public static Node resolve(String hostName) { return RackResolver.resolve(hostName); }
Example 2
Source File: ResourceTrackerService.java From big-c with Apache License 2.0 | 2 votes |
/** * resolving the network topology. * @param hostName the hostname of this node. * @return the resolved {@link Node} for this nodemanager. */ public static Node resolve(String hostName) { return RackResolver.resolve(hostName); }