TestSetrepIncreasing.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 junit.framework.TestCase;
  20. import java.io.*;
  21. import org.apache.hadoop.conf.Configuration;
  22. import org.apache.hadoop.fs.*;
  23. import org.apache.hadoop.hdfs.server.datanode.SimulatedFSDataset;
  24. public class TestSetrepIncreasing extends TestCase {
  25.   static void setrep(int fromREP, int toREP, boolean simulatedStorage) throws IOException {
  26.     Configuration conf = new Configuration();
  27.     if (simulatedStorage) {
  28.       conf.setBoolean(SimulatedFSDataset.CONFIG_PROPERTY_SIMULATED, true);
  29.     }
  30.     conf.set("dfs.replication", "" + fromREP);
  31.     conf.setLong("dfs.blockreport.intervalMsec", 1000L);
  32.     conf.set("dfs.replication.pending.timeout.sec", Integer.toString(2));
  33.     MiniDFSCluster cluster = new MiniDFSCluster(conf, 10, true, null);
  34.     FileSystem fs = cluster.getFileSystem();
  35.     assertTrue("Not a HDFS: "+fs.getUri(), fs instanceof DistributedFileSystem);
  36.     try {
  37.       Path root = TestDFSShell.mkdir(fs, 
  38.           new Path("/test/setrep" + fromREP + "-" + toREP));
  39.       Path f = TestDFSShell.writeFile(fs, new Path(root, "foo"));
  40.       
  41.       // Verify setrep for changing replication
  42.       {
  43.         String[] args = {"-setrep", "-w", "" + toREP, "" + f};
  44.         FsShell shell = new FsShell();
  45.         shell.setConf(conf);
  46.         try {
  47.           assertEquals(0, shell.run(args));
  48.         } catch (Exception e) {
  49.           assertTrue("-setrep " + e, false);
  50.         }
  51.       }
  52.       //get fs again since the old one may be closed
  53.       fs = cluster.getFileSystem();
  54.       FileStatus file = fs.getFileStatus(f);
  55.       long len = file.getLen();
  56.       for(BlockLocation locations : fs.getFileBlockLocations(file, 0, len)) {
  57.         assertTrue(locations.getHosts().length == toREP);
  58.       }
  59.       TestDFSShell.show("done setrep waiting: " + root);
  60.     } finally {
  61.       try {fs.close();} catch (Exception e) {}
  62.       cluster.shutdown();
  63.     }
  64.   }
  65.   public void testSetrepIncreasing() throws IOException {
  66.     setrep(3, 7, false);
  67.   }
  68.   public void testSetrepIncreasingSimulatedStorage() throws IOException {
  69.     setrep(3, 7, true);
  70.   }
  71. }