TestNamenodeCapacityReport.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:5k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.hdfs.server.namenode;
  19. import java.io.File;
  20. import java.util.ArrayList;
  21. import org.apache.hadoop.conf.Configuration;
  22. import org.apache.hadoop.fs.DF;
  23. import org.apache.hadoop.hdfs.MiniDFSCluster;
  24. import org.apache.hadoop.hdfs.server.namenode.DatanodeDescriptor;
  25. import org.apache.hadoop.hdfs.server.namenode.FSNamesystem;
  26. import junit.framework.TestCase;
  27. import org.apache.commons.logging.Log;
  28. import org.apache.commons.logging.LogFactory;
  29. /**
  30.  * This tests InterDataNodeProtocol for block handling. 
  31.  */
  32. public class TestNamenodeCapacityReport extends TestCase {
  33.   private static final Log LOG = LogFactory.getLog(TestNamenodeCapacityReport.class);
  34.   /**
  35.    * The following test first creates a file.
  36.    * It verifies the block information from a datanode.
  37.    * Then, it updates the block with new information and verifies again. 
  38.    */
  39.   public void testVolumeSize() throws Exception {
  40.     Configuration conf = new Configuration();
  41.     MiniDFSCluster cluster = null;
  42.     // Set aside fifth of the total capacity as reserved
  43.     long reserved = 10000;
  44.     conf.setLong("dfs.datanode.du.reserved", reserved);
  45.     
  46.     try {
  47.       cluster = new MiniDFSCluster(conf, 1, true, null);
  48.       cluster.waitActive();
  49.       
  50.       FSNamesystem namesystem = cluster.getNameNode().namesystem;
  51.       
  52.       // Ensure the data reported for each data node is right
  53.       ArrayList<DatanodeDescriptor> live = new ArrayList<DatanodeDescriptor>();
  54.       ArrayList<DatanodeDescriptor> dead = new ArrayList<DatanodeDescriptor>();
  55.       namesystem.DFSNodesStatus(live, dead);
  56.       
  57.       assertTrue(live.size() == 1);
  58.       
  59.       long used, remaining, configCapacity, nonDFSUsed;
  60.       float percentUsed, percentRemaining;
  61.       
  62.       for (final DatanodeDescriptor datanode : live) {
  63.         used = datanode.getDfsUsed();
  64.         remaining = datanode.getRemaining();
  65.         nonDFSUsed = datanode.getNonDfsUsed();
  66.         configCapacity = datanode.getCapacity();
  67.         percentUsed = datanode.getDfsUsedPercent();
  68.         percentRemaining = datanode.getRemainingPercent();
  69.         
  70.         LOG.info("Datanode configCapacity " + configCapacity
  71.             + " used " + used + " non DFS used " + nonDFSUsed 
  72.             + " remaining " + remaining + " perentUsed " + percentUsed
  73.             + " percentRemaining " + percentRemaining);
  74.         
  75.         assertTrue(configCapacity == (used + remaining + nonDFSUsed));
  76.         assertTrue(percentUsed == ((100.0f * (float)used)/(float)configCapacity));
  77.         assertTrue(percentRemaining == ((100.0f * (float)remaining)/(float)configCapacity));
  78.       }   
  79.       
  80.       DF df = new DF(new File(cluster.getDataDirectory()), conf);
  81.      
  82.       //
  83.       // Currently two data directories are created by the data node
  84.       // in the MiniDFSCluster. This results in each data directory having
  85.       // capacity equals to the disk capacity of the data directory.
  86.       // Hence the capacity reported by the data node is twice the disk space
  87.       // the disk capacity
  88.       //
  89.       // So multiply the disk capacity and reserved space by two 
  90.       // for accommodating it
  91.       //
  92.       int numOfDataDirs = 2;
  93.       
  94.       long diskCapacity = numOfDataDirs * df.getCapacity();
  95.       reserved *= numOfDataDirs;
  96.       
  97.       configCapacity = namesystem.getCapacityTotal();
  98.       used = namesystem.getCapacityUsed();
  99.       nonDFSUsed = namesystem.getCapacityUsedNonDFS();
  100.       remaining = namesystem.getCapacityRemaining();
  101.       percentUsed = namesystem.getCapacityUsedPercent();
  102.       percentRemaining = namesystem.getCapacityRemainingPercent();
  103.       
  104.       LOG.info("Data node directory " + cluster.getDataDirectory());
  105.            
  106.       LOG.info("Name node diskCapacity " + diskCapacity + " configCapacity "
  107.           + configCapacity + " reserved " + reserved + " used " + used 
  108.           + " remaining " + remaining + " nonDFSUsed " + nonDFSUsed 
  109.           + " remaining " + remaining + " percentUsed " + percentUsed 
  110.           + " percentRemaining " + percentRemaining);
  111.       
  112.       // Ensure new total capacity reported excludes the reserved space
  113.       assertTrue(configCapacity == diskCapacity - reserved);
  114.       
  115.       // Ensure new total capacity reported excludes the reserved space
  116.       assertTrue(configCapacity == (used + remaining + nonDFSUsed));
  117.       // Ensure percent used is calculated based on used and present capacity
  118.       assertTrue(percentUsed == ((float)used * 100.0f)/(float)configCapacity);
  119.       // Ensure percent used is calculated based on used and present capacity
  120.       assertTrue(percentRemaining == ((float)remaining * 100.0f)/(float)configCapacity);
  121.     }
  122.     finally {
  123.       if (cluster != null) {cluster.shutdown();}
  124.     }
  125.   }
  126. }