NameNode生成DataNode的网络拓扑图的源码分析---NetworkTopology

NetworkTopology将整个集群中的DN存储成了一个树状网络拓扑图, 表示一个具有树状网络拓扑结构的计算机集群, 一个集群可能由多个数据中心Data Center组成, 在这些数据中心分布着为计算需求而设置的很多计算机的机架Rack. InnerNode内部类, 表示数据中心/机架的转换器/或路由  

[java] view plain copy
  1. /** The class represents a cluster of computer with a tree hierarchical network topology.  
  2.  * For example, a cluster may be consists of many data centers filled with racks of computers. In a network topology, 
  3.  * leaves represent data nodes (computers) and inner nodes represent switches/routers that manage traffic in/out of data centers or racks. */  
  4. public class NetworkTopology {  
  5.   public final static String DEFAULT_RACK = "/default-rack";        // 默认机架名称  
  6.   public final static int DEFAULT_HOST_LEVEL = 2;               // 主机层次    
  7.   InnerNode clusterMap = new InnerNode(InnerNode.ROOT);     // the root 定义网络拓扑的根结点  
  8.   private int depthOfAllLeaves = -1;                            // Depth of all leaf nodes  
  9.   private int numOfRacks = 0;                               // rack counter 机架数量  
  10. }  


InnerNode 

每一个`Node`在网络拓扑中应该有一个名称及其位置(使用类似文件路径的方式来定义), 例如一个Datanode名称为hostname:port,  

并且该Datanode在数据中心dog里的orange机架上, 则这个Datanode在网络拓扑中的位置(网络地址)为/dog/orange.  

[java] view plain copy
  1. /** The interface defines a node in a network topology.  Node接口表示网络拓扑中的结点的抽象, 一个Node可能是一个Datanode, 
  2.  * A node may be a leave representing a data node or an inner node representing a datacenter or rack. 也可能是一个表示数据中心或机架的内部结点. 
  3.  * Each data has a name and its location in the network is decided by a string with syntax similar to a file name.  
  4.  * For example, a data node's name is hostname:port# and if it's located at rack "orange" in datacenter "dog",  
  5.  * the string representation of its network location is /dog/orange. the path of this node is /dog/orange/hostname */  
  6. public interface Node {  
  7.   public String getNetworkLocation();   /** Return the string representation of this node's network location 返回表示该结点的网络地址的字符串*/  
  8.   public void setNetworkLocation(String location);  /** Set the node's network location */  
  9.   public String getName();              /** Return this node's name 获取该结点的名称*/  
  10.   public Node getParent();              /** Return this node's parent 获取该结点的父结点*/  
  11.   public void setParent(Node parent);   /** Set this node's parent */  
  12.   public int getLevel();                    /** Return this node's level in the tree. E.g. the root of a tree returns 0 and its children return 1 */  
  13.   public void setLevel(int i);              /** Set this node's level in the tree.*/  
  14. }  

`NodeBase`实现了Node接口, 是一个最基本的结点的实现. 该类定义的属性都是与一个结点的基本属性信息相关的  

假设DN节点的路径path=/a/b/c, 则节点名称name=c, 节点路径location=/a/b.  节点的`path`不需要定义`location/name`组成 

[java] view plain copy
  1. /** A base class that implements interface Node 实现了Node接口, 是一个最基本的结点的实现*/  
  2. public class NodeBase implements Node {  
  3.   public final static char PATH_SEPARATOR = '/';        // 路径分隔符  
  4.   public final static String PATH_SEPARATOR_STR = "/";  
  5.   public final static String ROOT = "";                 // string representation of root 网络拓扑的根结点  
  6.   protected String name;                            // host:port#  
  7.   protected String location;                        // string representation of this node's location 该结点的网络位置  
  8.   protected int level;                              // which level of the tree the node resides 该结点在网络拓扑中的层次  
  9.   protected Node parent;                            // its parent 该结点的父结点  
  10.     
  11.   public String getName() { return name; }          /** Return this node's name */  
  12.   public String getNetworkLocation(){return location;}  /** Return this node's network location */  
  13.   public static String getPath(Node node) {         /** Return this node's path */  
  14.     return node.getNetworkLocation()+PATH_SEPARATOR_STR+node.getName();  
  15.   }  
  16.   public String toString() { return getPath(this); }        /** Return this node's string representation */  
  17. }  

`InnerNode`表示数据中心DC的转换器Switch或机架Rack的路由器Router. 不同于网络拓扑中的叶结点:主机, 它具有非空的孩子结点  

下图表示同一数据块中心的网络拓扑图其中SwitchRouter都表示InnerNode. 叶子节点连接到不同RackRouter不同Rack连接到Switch.  

判断InnerNode是否是Rack(router)的依据是InnerNode的第一个字节点不为InnerNode. 否则如果是Switch, 其子节点是router,仍然是InnerNode.  

树状结构要考虑的是祖先--子关系叶子节点的父节点只可能有一个即其连接到的RackRouter. 但是祖先可以有多个(祖先的祖先...), 包括父节点.

[javascript] view plain copy
  1. /* Inner Node represent a switch/router of a data center or rack. Different from a leave node, it has non-null children. */  
  2. private class InnerNode extends NodeBase {  
  3.   private ArrayList children=new ArrayList();  // 子节点. InnerNode可以是router或switch. 对应子节点分别是叶子节点和机架.    
  4.   private int numOfLeaves;          // 叶子节点的数量: 仅表示树状拓扑图中所有Datanodes的数量  
  5.     
  6.   boolean isRack() {                    // 判断当前节点是否是一个机架. 因为InnerNode表示数据中心的转换器, 或者机架的路由器.   
  7.     if (children.isEmpty()) return true;    // 没有子节点, 是机架. 机架下没有挂载任何数据节点, 空的机架.    
  8.     Node firstChild = children.get(0);  // 第一个子节点  
  9.     if (firstChild instanceof InnerNode) return false// 如果第一个子节点还是InnerNode, 说明这不是机架, 是数据中心?   
  10.     return true;                    // 第一个子节点不是InnerNode, 说明这是一个机架.   
  11.   }      
  12.   boolean isAncestor(Node n) {      // 判断当前节点是否是节点Node n的祖先节点  
  13.     return getPath(this).equals(NodeBase.PATH_SEPARATOR_STR) ||   
  14.         (n.getNetworkLocation()+NodeBase.PATH_SEPARATOR_STR).startsWith(getPath(this)+NodeBase.PATH_SEPARATOR_STR);  
  15.   }     
  16.   boolean isParent(Node n) {            // 判断当前节点是否是节点Node n的父节点  
  17.     return n.getNetworkLocation().equals(getPath(this));  
  18.   }  
  19. }  

NameNode生成DataNode的网络拓扑图的源码分析---NetworkTopology_第1张图片


InnerNode.add(Node n) 

在上面isAncestor(), isParent()方法的基础上可以将节点添加到树状网络拓扑图中或从拓扑图中删除. isRack()会用于getLeaf()获取叶子节点.    

按照NodeBase的实现`子节点的location=父节点的path. 比如节点/r1/n1location=/r1, n1的父节点r1path=/r1.`  

[java] view plain copy
  1. private String getNextAncestorName(Node n) {                        /* Return a child name of this node who is an ancestor of node n */  
  2.   if (!isAncestor(n)) throw new IllegalArgumentException(this + "is not an ancestor of " + n);// this current node must be the ancestor of Node n  
  3.   String name = n.getNetworkLocation().substring(getPath(this).length());   // 当前节点this是参数Node n的祖先!  
  4.   if (name.charAt(0) == PATH_SEPARATOR) name = name.substring(1);       // 去掉开头的路径分隔符/.  比如/a/b/c -> a/b/c  
  5.   int index=name.indexOf(PATH_SEPARATOR);  
  6.   if (index !=-1) name = name.substring(0, index);                      // 从路径开头到第一个路径分隔符/之间的节点名称  ->  a  
  7.   return name;  
  8.   
  9.   
  10. /** Add node n to the subtree of this node 添加节点n到当前节点的子树中  
  11.  * @param n node to be added 如果当前节点不是n的父节点, 需要递归直到找到n的父节点, 往n的父节点的子树中添加节点n 
  12.  * @return true if the node is added; false otherwise */  
  13. boolean add(Node n) {  
  14.   if (!isAncestor(n))throw new IllegalArgumentException("this current node must be the ancestor of Node n");  
  15.   if (isParent(n)) {  
  16.     n.setParent(this);                              // ③ this node is the parent of n; add n directly  
  17.     n.setLevel(this.level+1);  
  18.     for(int i=0; i
  19.       if (children.get(i).getName().equals(n.getName())) {  
  20.         children.set(i, n);  
  21.         return false;                               // if to be added node n is already in subtree, don’t add it  
  22.       }  
  23.     }  
  24.     children.add(n);                                // ④ add node n to parent’s children list  
  25.     numOfLeaves++;  
  26.     return true;  
  27.   } else {  
  28.     String parentName = getNextAncestorName(n); // ① find the next ancestor node  
  29.     InnerNode parentNode = null;  
  30.     for(int i=0; i
  31.       if (children.get(i).getName().equals(parentName)) {  
  32.         parentNode = (InnerNode)children.get(i);  
  33.         break;  
  34.       }  
  35.     }  
  36.     if (parentNode == null) {                       // create a new InnerNode  
  37.       parentNode = new InnerNode(parentName, getPath(this), thisthis.getLevel()+1);  
  38.       children.add(parentNode);                 // add parentNode to this current caller node  
  39.     }  
  40.     if (parentNode.add(n)) {                        // ② add n to the subtree of the next ancestor node 递归调用!  
  41.       numOfLeaves++;                            // ⑤ 递归调用后面的语句在递归调用返回后才执行.   
  42.       return true;                                
  43.     } else {  
  44.       return false;  
  45.     }  
  46.   }  
  47. }  

NameNode生成DataNode的网络拓扑图的源码分析---NetworkTopology_第2张图片

InnerNode的剩余三个方法remove, getLoc, getLeaf都通过这种递归调用的方式来寻找到最终要操作的目标节点.


测试用例1 - TestNetworkTopology

[java] view plain copy
  1. public class TestNetworkTopology extends TestCase {  
  2.   private final static NetworkTopology cluster = new NetworkTopology();  
  3.   private final static DatanodeDescriptor dataNodes[] = new DatanodeDescriptor[] {  
  4.     new DatanodeDescriptor(new DatanodeID("h1:5020"), "/d1/r1"),  
  5.     new DatanodeDescriptor(new DatanodeID("h2:5020"), "/d1/r1"),  
  6.     new DatanodeDescriptor(new DatanodeID("h3:5020"), "/d1/r2"),  
  7.     new DatanodeDescriptor(new DatanodeID("h4:5020"), "/d1/r2"),  
  8.     new DatanodeDescriptor(new DatanodeID("h5:5020"), "/d1/r2"),  
  9.     new DatanodeDescriptor(new DatanodeID("h6:5020"), "/d2/r3"),  
  10.     new DatanodeDescriptor(new DatanodeID("h7:5020"), "/d2/r3")  
  11.   };  
  12.   static {  
  13.     for(int i=0; i
  14.       cluster.add(dataNodes[i]);  
  15.     System.out.println("叶子节点数量:" + cluster.getNumOfLeaves());  
  16.     System.out.println("[ADD]网络拓扑图:" + cluster);  
  17.   }  
  18.   public void testNumOfChildren() throws Exception {  
  19.     assertEquals(cluster.getNumOfLeaves(), dataNodes.length);  
  20.   }  
  21. }  


调试add

在调试之前我们对add()进行简化分成五个步骤这几个步骤是调试过程的重点在递归调用过程中注意this, parentNode,childrennumOfLeaves 

[java] view plain copy
  1. boolean add(Node n) {  
  2.   if (isParent(n)) {                                    // ③ 调用者是节点的父节点(机架)  
  3.     children.add(n);                                // ④ add node n to parent’s children list  
  4.     numOfLeaves++;  
  5.     return true;  
  6.   } else {                                          // ① 调用者是节点n的祖先  
  7.     String parentName = getNextAncestorName(n); // find the next ancestor node  
  8.     InnerNode parentNode = null;  
  9.     // ...根据parentName到children中找parentNode, 如果存在跳出循环, 下面直接使用parentNode  
  10.     if (parentNode == null) {                       // create a new InnerNode  
  11.       parentNode = new InnerNode(parentName, getPath(this), thisthis.getLevel()+1);  
  12.       children.add(parentNode);                 // add parentNode to this current caller node  
  13.     }  
  14.     if (parentNode.add(n)) {                        // ② add n to the subtree of the next ancestor node 递归调用!  
  15.       numOfLeaves++;                            // ⑤ 递归调用后面的语句在递归调用返回后才执行.   
  16.       return true;                                
  17.     }   
  18.   }  
  19. }  

上面的测试用例添加了7DN节点到树状网络拓扑图中我们以添加第一个节点h1为例add(Node n)if(isParent())上添加断点开始调试.  

在上面的测试用例中第一个DN节点是new DatanodeDescriptor(new DatanodeID("h1:5020"), "/d1/r1"). cluster会使用NetworkTopology的成员变量InnerNode clusterMap根节点开始调用InnerNode.add(Node n). 其中Node n就是第一个DN节点节点nname=h1:5020, location=/d1/r1

NameNode生成DataNode的网络拓扑图的源码分析---NetworkTopology_第3张图片

NameNode生成DataNode的网络拓扑图的源码分析---NetworkTopology_第4张图片NameNode生成DataNode的网络拓扑图的源码分析---NetworkTopology_第5张图片NameNode生成DataNode的网络拓扑图的源码分析---NetworkTopology_第6张图片

NameNode生成DataNode的网络拓扑图的源码分析---NetworkTopology_第7张图片

**陷阱与解答**  

InnerNode.add()else部分的处理会递归调用在递归调用后面变量numOfLeaves++. 

以上面添加/d1/r1/n1为例总共发生了两次递归调用最后一次逻辑是在if中处理if中也将变量numOfLeaves++.

那么你可能就会认为numOfLeaves总共加了3值应该为3才是但是实际上在添加/d1/r1/n1, numOfLeaves=1. 


这是因为对于每次的递归调用当前调用的对象即this引用的节点都是不同的对于不同的InnerNode对象

因为numOfLeaves是对象的成员变量即每个InnerNode对象都有自己的numOfLeaves

(如果把numOfLeaves定义在和InnerNode同等级即在NetworkTopology那么变量就是所有InnerNode对象共享的.)


add()的调用者最初是root根节点那么调用add()完成后得到的返回值numOfLeaves也应该是来自于root节点的

而不是其他InnerNodenumOfLeaves. 尽管其他InnerNodenumOfLeaves的值也是1(/d1/d1/r1都是InnerNode). 

如果将else部分递归调用后面的numOfLeaves++注释掉那么root.add(n)最后得到的numOfLeaves=0. 

(尽管此时/d1/r1numOfLeaves的值仍然=1, 但是递归调用返回后没有保证/d1/r1的父节点/d1/d1的父节点rootnumOfLeaves+1.)


**getNextAncestorName**  

1. name = n.location.substring(getPath(this).lenth)

2. 如果name/开头去掉开头的/: name.substring(1)

3. 如果name/分隔则取开头到第一个/之间的内容

NameNode生成DataNode的网络拓扑图的源码分析---NetworkTopology_第8张图片

**测试用例的打印信息**

上面测试用例TestNetworkTopology的打印信息如下.

[plain] view plain copy
  1. 叶子节点数量:7  
  2. [ADD]网络拓扑图:Number of racks: 3  
  3. Expected number of leaves:7  
  4. 0: /d1/r1/h1:5020  
  5. 1: /d1/r1/h2:5020  
  6. 2: /d1/r2/h3:5020  
  7. 3: /d1/r2/h4:5020  
  8. 4: /d1/r2/h5:5020  
  9. 5: /d2/r3/h6:5020  
  10. 6: /d2/r3/h7:5020  

如果在NetworkTopology.InnerNode.add的两处numOfLeaves++后面加上打印语句打印numOfLeaves的值则每个节点的打印信息是一个before, 两个after  

其中Before是节点h1:5020的父节点/d1/r1进入if的打印信息. After是在递归调用结束后, /d1/r1parent=/d1/d1parent=/打印的信息(两次递归调用).

下面是测试用例的树状网络拓扑图:  

NameNode生成DataNode的网络拓扑图的源码分析---NetworkTopology_第9张图片

InnerNode.remove(Node n)

[java] view plain copy
  1. /** Remove node n from the subtree of this node */  
  2. boolean remove(Node n) {  
  3.   String parent = n.getNetworkLocation();       // node's location equals to parent's path  
  4.   String currentPath = getPath(this);           // current caller's path must be ancestor of node n  
  5.   if (!isAncestor(n)) throw new IllegalArgumentException(n.getName()+", which is located at "+parent+", is not a descendent of "+currentPath);  
  6.   if (isParent(n)) {                                // ① this node is the parent of n; remove n directly  
  7.     for(int i=0; i
  8.       if (children.get(i).getName().equals(n.getName())) {  // 添加时不应存在, 删除时应该存在  
  9.         children.remove(i);                 // 从父节点的children中移除要删除的节点n  
  10.         numOfLeaves--;  
  11.         n.setParent(null);                      // 上面仅移除父节点和要删除的节点的关系, 现在设置n的parent=null  
  12.         return true;                            // 一旦节点的父节点引用为null, 该节点就不在树状拓扑图中.   
  13.       }  
  14.     }  
  15.     return false;  
  16.   } else {                                      // ② find the next ancestor node: the parent node  
  17.     String parentName = getNextAncestorName(n);  
  18.     InnerNode parentNode = null;                // 获取当前调用者的子节点, 让子节点递归调用删除  
  19.     int i;  
  20.     for(i=0; i
  21.       if (children.get(i).getName().equals(parentName)) {  
  22.         parentNode = (InnerNode)children.get(i);  
  23.         break;  
  24.       }  
  25.     }  
  26.     if (parentNode==nullreturn false;         // 如果子节点不存在, 返回false. 无法递归下去, 当然返回false  
  27.     boolean isRemoved = parentNode.remove(n);   // remove n from the parent node 递归调用!  
  28.     if (isRemoved) {                            // 递归后的语句在①调用返回时, 依次逆序执行  
  29.       if (parentNode.getNumOfChildren() == 0) { // ③ if the parent node has no children, remove the parent node too  
  30.         children.remove(i);  
  31.       }  
  32.       numOfLeaves--;  
  33.     }  
  34.     return isRemoved;  
  35.   }  
  36. // end of remove  
NameNode生成DataNode的网络拓扑图的源码分析---NetworkTopology_第10张图片

假设根节点root调用remove(/d1/r1/n1)要删除节点n1. 由于root不是n1的父节点但却是n1的祖先所以需要递归直到找到n1的父节点来删除n1.  

[1]. root.remove(/d1/r1/n1)  

1.1  rootn1的祖先通过getNextAncestorName得到下一个祖先节点为d1

1.2 parentNode=/d1, root.children包括d1

然后使用d1递归调用自身/d1.remove(/d1/r1/n1)

1.3 递归调用自身后面的语句需要等到/d1.remove(/d1/r1/n1)调用返回后才会被执行->[5]. 调用时是顺序调用返回时是逆序返回.

[2]. /d1.remove(/d1/r1/n1)  

2.1 d1n1的祖先通过getNextAncestorName得到下一个祖先节点parentName=r1 :  /d1/r1.substring(/d1) -...->r1

2.2 parentNode=/d1/r1, d1.children包括r1

然后使用r1递归调用自身/d1/r1.remove(/d1/r1/n1)

2.3 递归调用后的语句也需等待/d1/r1.remove(/d1/r1/n1)调用返回后才会执行->[4]

[3]. /d1/r1.remove(/d1/r1/n1)  

3.1 r1n1的父节点不走getNextAncestorName即进入if(isParent(n))逻辑

因为要将n1r1中删除即将n1r1children子节点列表中删除

3.2 同时设置n1.parent=null, 一个叶子节点一旦父节点的引用为null, 那么它就不会在树状网络拓扑图NetworkTopology中了.

    3.3 最后开始返回上面等待下一个递归调用返回后面的语句就可以开始执行了.  

[4]. 控制逻辑回到[2]的最后一步2.3

4.1 parentNode=/d1/r1判断r1.children.length如果为0则将r1也删除掉

因为在[3]中已经将n1r1children中删除假设r1现在都没有其他节点了r1.children.length=0

4.2  将r1d1.children中移除现在r1[3]中被删除的节点n1一样都不会出现在NetworkTopology中了

[5]. 控制逻辑回到[1]的最后一步1.3

5.1 parentNode=/d1判断d1.children.length如果也为0, 也要将d1删除掉

因为在上一步[4]中删除了r1, 假设d1现在也都没有其他节点了那么d1.children.length=0

5.2 将d1root.children中移除. d1也会和r1, n1一样都不会出现在NetworkTopology

[6].  END. 如果上图中r3不存在则也会删除root节点整个NetworkTopology也为空了.  


测试用例2 - TestNetworkTopology

[java] view plain copy
  1. public void testRemove() throws Exception {  
  2.   for(int i=0; i
  3.     cluster.remove(dataNodes[i]);               //  移除所有DN节点          
  4.   }  
  5.   for(int i=0; i
  6.     assertFalse(cluster.contains(dataNodes[i]));    // 现在拓扑图中不包括任何DN节点了  
  7.   }  
  8.   assertEquals(0, cluster.getNumOfLeaves());    // 叶子节点的个数=0  
  9.   System.out.println("[remove]网络拓扑图:" + cluster);  
  10.   for(int i=0; i
  11.     cluster.add(dataNodes[i]);                  // 重新添加所有DN节点  
  12.   }  
  13. }  

打印信息:

[plain] view plain copy
  1. [remove]网络拓扑图:Number of racks: 0  
  2. Expected number of leaves:0  

InnerNode.getLoc() 

[java] view plain copy
  1. /** Given a node's string representation, return a reference to the node  参数loc说明了不会传递dn节点名称进来 */   
  2. private Node getLoc(String loc) {  
  3.   if (loc == null || loc.length() == 0return this;  
  4.           
  5.   String[] path = loc.split(PATH_SEPARATOR_STR, 2);     // 如果loc=r1/r2, path=[r1, r2]; 如果loc=r1/r2/r3, path=[r1, r2/r3]  
  6.   Node childnode = null;  
  7.   for(int i=0; i
  8.     if (children.get(i).getName().equals(path[0])) {  
  9.       childnode = children.get(i);  
  10.     }  
  11.   }  
  12.   if (childnode == nullreturn null;                   // non-existing node  
  13.   if (path.length == 1return childnode;  
  14.   if (childnode instanceof InnerNode) {  
  15.     return ((InnerNode)childnode).getLoc(path[1]);  // 递归调用  
  16.   } else {  
  17.     return null;  
  18.   }  
  19. }  

1. root.getLoc(r1/r2)

    将loc以路径分隔符/分成两部分, 第二部分可能还会包括/分隔的路径, 因此在后面会使用第二部分继续递归调用.  

    path[0]应该是当前调用者的一个子节点.  r1/r2分隔后的path=[r1, r2], path[0]=r1正是调用者root的子节点. 

    childnode = r1, 然后递归调用r1.getLoc(path[1]) = r1.getLoc(r2)

2. r1.getLoc(r2)

    对r2进行split, 此时r2只有一个元素. path = [r2]. path.length=1

    同样path[0]=r2应该也是当前调用者r1的一个子节点. 即r2是r1的childnode

    childnode=r2, 因为path.length=1, 直接return childnode=return r2

3. 所以root.getLoc(r1/r2)通过递归调用, 最终返回的是r2节点.  


InnerNode.getLeaf()

[java] view plain copy
  1. InnerNode clusterMap = new InnerNode(InnerNode.ROOT);       // the root 定义网络拓扑的根结点  
  2.   
  3. public String toString() {                                      /** convert a network tree to a string */  
  4.   StringBuffer tree = new StringBuffer();  
  5.   tree.append("Number of racks: " + numOfRacks + "\n");         // print the number of racks  
  6.   int numOfLeaves = getNumOfLeaves();                       // print the number of leaves  
  7.   tree.append("Expected number of leaves:" + numOfLeaves + "\n");  
  8.   for(int i=0; i// print nodes 树状网络拓扑图所有叶子节点  
  9.     tree.append(NodeBase.getPath(clusterMap.getLeaf(i, null)));   
  10.     tree.append("\n");  
  11.   }  
  12.   return tree.toString();  
  13. }  
  14.   
  15. public int getNumOfLeaves() {               /** Return the total number of nodes */  
  16.   return clusterMap.getNumOfLeaves();  
  17. }  

NetworkTopology通过网络拓扑图的根节点来索引整个树状结构只需定义InnerNode(ROOT), 不需要定义List的形式.  

因为树状结构从根节点开始到达叶子节点都是有父子节点的关联关系的这些关系都在内部类InnerNode中实现.  

clusterMap.getNumOfLeavers()就是获得InnerNode的成员变量numOfLeavers的值该变量表示拓扑图中叶子节点(Datanodes)的数量.  

InnerNodeadd()remove()中添加一个DN节点就+1, 移除一个DN节点就-1. 以此来记录树状网络拓扑图的叶子节点的数量.

[java] view plain copy
  1. private class InnerNode extends NodeBase {  
  2.   private ArrayList children=new ArrayList();  
  3.   private int numOfLeaves;  
  4.     
  5.   int getNumOfLeaves() {  
  6.     return numOfLeaves;  
  7.   }  
  8. }  

getLeafleafIndex为叶子节点的索引0开始到numOfLeaves. excludedNode表示要排除的节点在该方法前需进行检查:   

1. 判断excludeNode是否是叶子节点为空或者不是InnerNode的实例因为InnerNode只表示机架的路由器或者数据中心的转换器不表示主机叶子节点.  

2. 如果excludeNode不为null, 且是InnerNode的实例说明是router/switch, 不是叶子节点那么router/switch下的所有叶子节点都会被排除.  

如果excludedNode是叶子节点(包括excludedNode=null), 则只排除对应的一个DN节点numOfExcludedLeaves=1.

[java] view plain copy
  1. /** get leafIndex leaf of this subtree  if it is not in the excludedNode*/  
  2. ivate Node getLeaf(int leafIndex, Node excludedNode) {  
  3. System.out.println("leafIndex:" + (leafIndex+1));  
  4.   int count=0;  
  5.   boolean isLeaf = excludedNode == null || !(excludedNode instanceof InnerNode);        // 1. check if the excluded node a leaf  
  6.   int numOfExcludedLeaves = isLeaf ? 1 : ((InnerNode)excludedNode).getNumOfLeaves();    // 2. calculate the total number of excluded leaf nodes  
  7.     
  8.   if (isRack()) {       // children are leaves 机架下是主机叶子节点.   
  9.     if (isLeaf) {       // excluded node is a leaf node 被排除的节点是叶子节点  
  10.       int excludedIndex = children.indexOf(excludedNode);  
  11.       if (excludedIndex != -1 && leafIndex >= 0) {  
  12.         leafIndex = leafIndex>=excludedIndex ? leafIndex+1 : leafIndex;  // excluded node is one of the children so adjust the leaf index  
  13.       }  
  14.     }  
  15.     if (leafIndex<0 || leafIndex>=this.getNumOfChildren()) { return null; }   // range check  
  16.     System.out.println(this + ":" + children + "-" + children.size() + "[" + (leafIndex+1) + "]");  
  17.     return children.get(leafIndex);  
  18.   } else {              // 调用者不是机架, 要继续递归到机架上. 因为获取叶子节点应该是从机架上才能获取. 不是机架不能获取.  
  19.     for(int i=0; i
  20.       InnerNode child = (InnerNode)children.get(i);                 // 当前调用者的子节点  
  21.       if (excludedNode == null || excludedNode != child) {              // not the excludedNode  
  22.         int numOfLeaves = child.getNumOfLeaves();                   // 子节点的叶子节点的个数  
  23.         if (excludedNode != null && child.isAncestor(excludedNode)) {   // excludedNode可能是叶子节点, 或者是一个InnerNode. 如果为null, 不减  
  24.           numOfLeaves -= numOfExcludedLeaves;                       // 假设是叶子节点, child是其祖先, numOfExcludedLeaves=1, numOfLeaves-1  
  25.         }  
  26.         if (count+numOfLeaves > leafIndex) {                         // the leaf is in the child subtree  
  27.           return child.getLeaf(leafIndex-count, excludedNode);  
  28.         } else {  
  29.           count = count+numOfLeaves;                                // go to the next child  
  30.         }  
  31.       } else {                                                  // it is the excluededNode  
  32.         excludedNode = null;                                        // skip it and set the excludedNode to be null  
  33.       }  
  34.     }  
  35.     return null;  
  36.   }  
  37. }  

getLeaf中添加了2个打印语句运行测试用例. cluster变量会调用NetworkTopology.toString().  toString()中会循环所有叶子索引调用getLeaf.   

if中的打印信息为this: children-children.size[leafIndex]. 其中this为当前调用者, children为当前调用者的子节点只有当前调用者是机架时才会执行if.  

toString()numOfLeaves的循环遍历i0开始为了结合网络拓扑图的理解(leaf1开始), 在打印语句中将leafIndex+1(leafIndex参数即为传入的i遍历). 


前面我们已经解释了numOfLeaves是属于每个InnerNode自己的叶子节点的数量不是共享的变量同样InnerNodechildren变量也是对象私有的.  

因为InnerNode表示数据中心的转换器或者机架的路由器InnerNode最低只到机架这一层因此对于机架而言, children存放了机架上的所有DN节点.  

在调用getLeaf()如果调用者不是机架就会继续递归调用比如对于h1节点根节点//d1都不是机架进入的是else部分所以会继续递归调用.  

如果是机架比如/d1/r1, 就进入if部分从当前(机架)children中获取出对一个leafIndex的叶子节点即DN节点.  

(在前面的add, remove都是通过判断当前调用者是否是节点Node nparent来进入if语句节点nparent其实就是机架.)

从上面打印的第一部分日志可以看出: /d1/r1机架有2个叶子节点, /d1/r23个叶子节点, /d1/r32个叶子节点. leafIndex0开始(打印时leafIndex+1)  

比较add操作打印的numOfLeaves和此处getLeaf打印的leafIndex. 发现数据分别为:  

1. 同一机架的节点数量/索引.

2. 同一数据中心的节点数量/索引.

3. 所有数据中心的节点数量/索引.


InnerNode小结

至此已经分析完了内部类InnerNode的所有方法. NetworkTopology的方法都是基于InnerNode的方法

InnerNode表示网络拓扑图中的(数据中心上的)转换器或(机架上的)路由器由于数据节点即叶子节点是连接到机架的路由器上不同机架间连接到数据中心的转换器上因此用InnerNode表示转换器时children表示的子节点为机架. InnerNode用来表示机架时, children表示的子节点就是叶子节点.  

InnerNode的几个方法:add(), remove(), getLoc(), getLeaf()都用到了递归调用这是因为如果是从根节点开始调用这些方法.  由于根节点不是叶子节点的parent. 需要经过层层递归直到找到叶子的parent: 一般就是机架.  对于两层(level=1)的网络拓扑图比如/r1/h1, 递归调用只需一次就能找到根节点调用时通过getNextAncestorName得到r1, r1正是h1parent. 两层的拓扑图一般只有一个数据中心一个数据中心下有多个机架.  

三层(level=3)的网络拓扑图比如/d1/r1/h1. 即有多个数据中心从根节点开始到叶子就需要两次递归同上根节点通过getNextAncestorName得到d1, 由于d1不是h1parent, 因此有了第一次递归调用使用d1发起第一次递归调用. d1通过getNextAncestorName得到r1, 就和上面的一样了发起第二次递归调用当然如果要算上调用者的调用即根节点的第一次调用则总共发生了三次方法的调用这也正是上面我们看到打印的信息都是一个节点三次信息.  

一旦当前的调用者是叶子节点的parent(add方法)或者是机架(getLeaf方法)就不会再进入递归调用模式了方法中的两部分逻辑if表示当前调用者是机架, else逻辑表示当前调用者不是叶子的父节点而是其祖先对于三层的网络拓扑图根节点//d1都是叶子的祖先但只有机架/d1/r1才是叶子的parent.  

对于递归调用中的变量numOfLeaves[add]leafInex[getLeaf]的值在调试过程中要特别注意递归过程中的变量如果是局部变量即当前调用的对象自有的那么对于不同的调用对象他们的变量值不会相互影响即不是全局共享的.  由于InnerNode代表了/, d1r1, 因此InnerNode的成员变量children分别表示各自的孩子节点但是变量numOfLeaves只表示网络拓扑图中的叶子节点的数量不包括机架和数据中心的数量.  

add使用的变量numOfLeavesgetLeaf中使用的变量leafIndex. 在发生递归调用时打印的信息按照同一机架->同一数据中心->整个拓扑图的级别上升

NameNode生成DataNode的网络拓扑图的源码分析---NetworkTopology_第11张图片

你可能感兴趣的:(NameNode生成DataNode的网络拓扑图的源码分析---NetworkTopology)