HDFS-3495. Update Balancer to support new NetworkTopology with NodeGroup. Contributed by Junping Du
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1414878 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1634e980af
commit
833b928adf
|
@ -28,6 +28,9 @@ import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
import org.apache.hadoop.classification.InterfaceAudience;
|
import org.apache.hadoop.classification.InterfaceAudience;
|
||||||
import org.apache.hadoop.classification.InterfaceStability;
|
import org.apache.hadoop.classification.InterfaceStability;
|
||||||
|
import org.apache.hadoop.conf.Configuration;
|
||||||
|
import org.apache.hadoop.fs.CommonConfigurationKeysPublic;
|
||||||
|
import org.apache.hadoop.util.ReflectionUtils;
|
||||||
|
|
||||||
/** The class represents a cluster of computer with a tree hierarchical
|
/** The class represents a cluster of computer with a tree hierarchical
|
||||||
* network topology.
|
* network topology.
|
||||||
|
@ -53,6 +56,19 @@ public class NetworkTopology {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get an instance of NetworkTopology based on the value of the configuration
|
||||||
|
* parameter net.topology.impl.
|
||||||
|
*
|
||||||
|
* @param conf the configuration to be used
|
||||||
|
* @return an instance of NetworkTopology
|
||||||
|
*/
|
||||||
|
public static NetworkTopology getInstance(Configuration conf){
|
||||||
|
return ReflectionUtils.newInstance(
|
||||||
|
conf.getClass(CommonConfigurationKeysPublic.NET_TOPOLOGY_IMPL_KEY,
|
||||||
|
NetworkTopology.class, NetworkTopology.class), conf);
|
||||||
|
}
|
||||||
|
|
||||||
/** InnerNode represents a switch/router of a data center or rack.
|
/** InnerNode represents a switch/router of a data center or rack.
|
||||||
* Different from a leaf node, it has non-null children.
|
* Different from a leaf node, it has non-null children.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue