TestNamenodeCapacityReport.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:5k
源码类别:
网格计算
开发平台:
Java
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package org.apache.hadoop.hdfs.server.namenode;
- import java.io.File;
- import java.util.ArrayList;
- import org.apache.hadoop.conf.Configuration;
- import org.apache.hadoop.fs.DF;
- import org.apache.hadoop.hdfs.MiniDFSCluster;
- import org.apache.hadoop.hdfs.server.namenode.DatanodeDescriptor;
- import org.apache.hadoop.hdfs.server.namenode.FSNamesystem;
- import junit.framework.TestCase;
- import org.apache.commons.logging.Log;
- import org.apache.commons.logging.LogFactory;
- /**
- * This tests InterDataNodeProtocol for block handling.
- */
- public class TestNamenodeCapacityReport extends TestCase {
- private static final Log LOG = LogFactory.getLog(TestNamenodeCapacityReport.class);
- /**
- * The following test first creates a file.
- * It verifies the block information from a datanode.
- * Then, it updates the block with new information and verifies again.
- */
- public void testVolumeSize() throws Exception {
- Configuration conf = new Configuration();
- MiniDFSCluster cluster = null;
- // Set aside fifth of the total capacity as reserved
- long reserved = 10000;
- conf.setLong("dfs.datanode.du.reserved", reserved);
- try {
- cluster = new MiniDFSCluster(conf, 1, true, null);
- cluster.waitActive();
- FSNamesystem namesystem = cluster.getNameNode().namesystem;
- // Ensure the data reported for each data node is right
- ArrayList<DatanodeDescriptor> live = new ArrayList<DatanodeDescriptor>();
- ArrayList<DatanodeDescriptor> dead = new ArrayList<DatanodeDescriptor>();
- namesystem.DFSNodesStatus(live, dead);
- assertTrue(live.size() == 1);
- long used, remaining, configCapacity, nonDFSUsed;
- float percentUsed, percentRemaining;
- for (final DatanodeDescriptor datanode : live) {
- used = datanode.getDfsUsed();
- remaining = datanode.getRemaining();
- nonDFSUsed = datanode.getNonDfsUsed();
- configCapacity = datanode.getCapacity();
- percentUsed = datanode.getDfsUsedPercent();
- percentRemaining = datanode.getRemainingPercent();
- LOG.info("Datanode configCapacity " + configCapacity
- + " used " + used + " non DFS used " + nonDFSUsed
- + " remaining " + remaining + " perentUsed " + percentUsed
- + " percentRemaining " + percentRemaining);
- assertTrue(configCapacity == (used + remaining + nonDFSUsed));
- assertTrue(percentUsed == ((100.0f * (float)used)/(float)configCapacity));
- assertTrue(percentRemaining == ((100.0f * (float)remaining)/(float)configCapacity));
- }
- DF df = new DF(new File(cluster.getDataDirectory()), conf);
- //
- // Currently two data directories are created by the data node
- // in the MiniDFSCluster. This results in each data directory having
- // capacity equals to the disk capacity of the data directory.
- // Hence the capacity reported by the data node is twice the disk space
- // the disk capacity
- //
- // So multiply the disk capacity and reserved space by two
- // for accommodating it
- //
- int numOfDataDirs = 2;
- long diskCapacity = numOfDataDirs * df.getCapacity();
- reserved *= numOfDataDirs;
- configCapacity = namesystem.getCapacityTotal();
- used = namesystem.getCapacityUsed();
- nonDFSUsed = namesystem.getCapacityUsedNonDFS();
- remaining = namesystem.getCapacityRemaining();
- percentUsed = namesystem.getCapacityUsedPercent();
- percentRemaining = namesystem.getCapacityRemainingPercent();
- LOG.info("Data node directory " + cluster.getDataDirectory());
- LOG.info("Name node diskCapacity " + diskCapacity + " configCapacity "
- + configCapacity + " reserved " + reserved + " used " + used
- + " remaining " + remaining + " nonDFSUsed " + nonDFSUsed
- + " remaining " + remaining + " percentUsed " + percentUsed
- + " percentRemaining " + percentRemaining);
- // Ensure new total capacity reported excludes the reserved space
- assertTrue(configCapacity == diskCapacity - reserved);
- // Ensure new total capacity reported excludes the reserved space
- assertTrue(configCapacity == (used + remaining + nonDFSUsed));
- // Ensure percent used is calculated based on used and present capacity
- assertTrue(percentUsed == ((float)used * 100.0f)/(float)configCapacity);
- // Ensure percent used is calculated based on used and present capacity
- assertTrue(percentRemaining == ((float)remaining * 100.0f)/(float)configCapacity);
- }
- finally {
- if (cluster != null) {cluster.shutdown();}
- }
- }
- }