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

网格计算

开发平台:

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.impl.Log4JLogger;
  21. import org.apache.hadoop.conf.Configuration;
  22. import org.apache.hadoop.fs.FSDataOutputStream;
  23. import org.apache.hadoop.fs.FileSystem;
  24. import org.apache.hadoop.fs.Path;
  25. import org.apache.hadoop.hdfs.server.namenode.FSNamesystem;
  26. import org.apache.hadoop.hdfs.server.namenode.LeaseManager;
  27. import org.apache.hadoop.hdfs.server.namenode.NameNode;
  28. import org.apache.log4j.Level;
  29. public class TestFileCreationDelete extends junit.framework.TestCase {
  30.   {
  31.     ((Log4JLogger)NameNode.stateChangeLog).getLogger().setLevel(Level.ALL);
  32.     ((Log4JLogger)LeaseManager.LOG).getLogger().setLevel(Level.ALL);
  33.     ((Log4JLogger)FSNamesystem.LOG).getLogger().setLevel(Level.ALL);
  34.   }
  35.   public void testFileCreationDeleteParent() throws IOException {
  36.     Configuration conf = new Configuration();
  37.     final int MAX_IDLE_TIME = 2000; // 2s
  38.     conf.setInt("ipc.client.connection.maxidletime", MAX_IDLE_TIME);
  39.     conf.setInt("heartbeat.recheck.interval", 1000);
  40.     conf.setInt("dfs.heartbeat.interval", 1);
  41.     conf.setBoolean("dfs.support.append", true);
  42.     // create cluster
  43.     MiniDFSCluster cluster = new MiniDFSCluster(conf, 1, true, null);
  44.     FileSystem fs = null;
  45.     try {
  46.       cluster.waitActive();
  47.       fs = cluster.getFileSystem();
  48.       final int nnport = cluster.getNameNodePort();
  49.       // create file1.
  50.       Path dir = new Path("/foo");
  51.       Path file1 = new Path(dir, "file1");
  52.       FSDataOutputStream stm1 = TestFileCreation.createFile(fs, file1, 1);
  53.       System.out.println("testFileCreationDeleteParent: "
  54.           + "Created file " + file1);
  55.       TestFileCreation.writeFile(stm1, 1000);
  56.       stm1.sync();
  57.       // create file2.
  58.       Path file2 = new Path("/file2");
  59.       FSDataOutputStream stm2 = TestFileCreation.createFile(fs, file2, 1);
  60.       System.out.println("testFileCreationDeleteParent: "
  61.           + "Created file " + file2);
  62.       TestFileCreation.writeFile(stm2, 1000);
  63.       stm2.sync();
  64.       // rm dir
  65.       fs.delete(dir, true);
  66.       // restart cluster with the same namenode port as before.
  67.       // This ensures that leases are persisted in fsimage.
  68.       cluster.shutdown();
  69.       try {Thread.sleep(2*MAX_IDLE_TIME);} catch (InterruptedException e) {}
  70.       cluster = new MiniDFSCluster(nnport, conf, 1, false, true, 
  71.                                    null, null, null);
  72.       cluster.waitActive();
  73.       // restart cluster yet again. This triggers the code to read in
  74.       // persistent leases from fsimage.
  75.       cluster.shutdown();
  76.       try {Thread.sleep(5000);} catch (InterruptedException e) {}
  77.       cluster = new MiniDFSCluster(nnport, conf, 1, false, true, 
  78.                                    null, null, null);
  79.       cluster.waitActive();
  80.       fs = cluster.getFileSystem();
  81.       assertTrue(!fs.exists(file1));
  82.       assertTrue(fs.exists(file2));
  83.     } finally {
  84.       fs.close();
  85.       cluster.shutdown();
  86.     }
  87.   }
  88. }