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

网格计算

开发平台:

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;
  19. import java.io.IOException;
  20. import org.apache.commons.logging.Log;
  21. import org.apache.commons.logging.LogFactory;
  22. import org.apache.hadoop.conf.Configuration;
  23. import org.apache.hadoop.fs.FileSystem;
  24. import org.apache.hadoop.fs.Path;
  25. import org.apache.hadoop.hdfs.protocol.FSConstants.SafeModeAction;
  26. import org.apache.hadoop.hdfs.server.namenode.NameNode;
  27. import junit.framework.TestCase;
  28. /**
  29.  * This test makes sure that if SafeMode is manually entered, NameNode does not
  30.  * come out of safe mode even after the startup safemode conditions are met.
  31.  */
  32. public class TestSafeMode extends TestCase {
  33.   
  34.   static Log LOG = LogFactory.getLog(TestSafeMode.class);
  35.   
  36.   public void testManualSafeMode() throws IOException {
  37.     MiniDFSCluster cluster = null;
  38.     FileSystem fs = null;
  39.     try {
  40.       Configuration conf = new Configuration();
  41.       // disable safemode extension to make the test run faster.
  42.       conf.set("dfs.safemode.extension", "1");
  43.       cluster = new MiniDFSCluster(conf, 1, true, null);
  44.       cluster.waitActive();
  45.       
  46.       fs = cluster.getFileSystem();
  47.       Path file1 = new Path("/tmp/testManualSafeMode/file1");
  48.       Path file2 = new Path("/tmp/testManualSafeMode/file2");
  49.       
  50.       LOG.info("Created file1 and file2.");
  51.       
  52.       // create two files with one block each.
  53.       DFSTestUtil.createFile(fs, file1, 1000, (short)1, 0);
  54.       DFSTestUtil.createFile(fs, file2, 2000, (short)1, 0);    
  55.       cluster.shutdown();
  56.       
  57.       // now bring up just the NameNode.
  58.       cluster = new MiniDFSCluster(conf, 0, false, null);
  59.       cluster.waitActive();
  60.       
  61.       LOG.info("Restarted cluster with just the NameNode");
  62.       
  63.       NameNode namenode = cluster.getNameNode();
  64.       
  65.       assertTrue("No datanode is started. Should be in SafeMode", 
  66.                  namenode.isInSafeMode());
  67.       
  68.       // manually set safemode.
  69.       namenode.setSafeMode(SafeModeAction.SAFEMODE_ENTER);
  70.       
  71.       // now bring up the datanode and wait for it to be active.
  72.       cluster.startDataNodes(conf, 1, true, null, null);
  73.       cluster.waitActive();
  74.       
  75.       LOG.info("Datanode is started.");
  76.       
  77.       try {
  78.         Thread.sleep(2000);
  79.       } catch (InterruptedException ignored) {}
  80.       
  81.       assertTrue("should still be in SafeMode", namenode.isInSafeMode());
  82.       
  83.       namenode.setSafeMode(SafeModeAction.SAFEMODE_LEAVE);
  84.       assertFalse("should not be in SafeMode", namenode.isInSafeMode());
  85.     } finally {
  86.       if(fs != null) fs.close();
  87.       if(cluster!= null) cluster.shutdown();
  88.     }
  89.   }
  90. }