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

网格计算

开发平台:

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.mapred;
  19. import java.io.*;
  20. import junit.framework.TestCase;
  21. import org.apache.commons.logging.Log;
  22. import org.apache.commons.logging.LogFactory;
  23. import org.apache.hadoop.io.IntWritable;
  24. import org.apache.hadoop.io.LongWritable;
  25. import org.apache.hadoop.io.Text;
  26. import org.apache.hadoop.fs.FileSystem;
  27. import org.apache.hadoop.fs.Path;
  28. import org.apache.hadoop.mapred.lib.IdentityReducer;
  29. import org.apache.hadoop.conf.Configuration;
  30. import org.apache.hadoop.hdfs.MiniDFSCluster;
  31. /**
  32.  * Class to test mapred task's temp directory
  33.  */
  34. public class TestMiniMRTaskTempDir extends TestCase {
  35.   private static final Log LOG =
  36.     LogFactory.getLog(TestMiniMRTaskTempDir.class.getName());
  37.   private MiniMRCluster mr;
  38.   private MiniDFSCluster dfs;
  39.   private FileSystem fileSys;
  40.   
  41.   /**
  42.    * Map class which checks whether temp directory exists
  43.    * and check the value of java.io.tmpdir
  44.    * Creates a tempfile and checks whether that is created in 
  45.    * temp directory specified.
  46.    */
  47.   public static class MapClass extends MapReduceBase
  48.   implements Mapper<LongWritable, Text, Text, IntWritable> {
  49.  Path tmpDir;
  50.  FileSystem localFs;
  51.      public void map (LongWritable key, Text value, 
  52.                      OutputCollector<Text, IntWritable> output, 
  53.                      Reporter reporter) throws IOException {
  54.        String tmp = null;
  55.        if (localFs.exists(tmpDir)) {
  56.          tmp = tmpDir.makeQualified(localFs).toString();
  57.          assertEquals(tmp, new Path(System.getProperty("java.io.tmpdir")).
  58.                                            makeQualified(localFs).toString());
  59.        } else {
  60.          fail("Temp directory "+tmpDir +" doesnt exist.");
  61.        }
  62.        File tmpFile = File.createTempFile("test", ".tmp");
  63.        assertEquals(tmp, new Path(tmpFile.getParent()).
  64.                                            makeQualified(localFs).toString());
  65.      }
  66.      public void configure(JobConf job) {
  67.        tmpDir = new Path(job.get("mapred.child.tmp", "./tmp"));
  68.        try {
  69.          localFs = FileSystem.getLocal(job);
  70.        } catch (IOException ioe) {
  71.          ioe.printStackTrace();
  72.          fail("IOException in getting localFS");
  73.        }
  74.      }
  75.   }
  76.   /**
  77.    * Launch tests 
  78.    * @param conf Configuration of the mapreduce job.
  79.    * @param inDir input path
  80.    * @param outDir output path
  81.    * @param input Input text
  82.    * @throws IOException
  83.    */
  84.   public void launchTest(JobConf conf,
  85.                          Path inDir,
  86.                          Path outDir,
  87.                          String input)
  88.   throws IOException {
  89.     // set up the input file system and write input text.
  90.     FileSystem inFs = inDir.getFileSystem(conf);
  91.     FileSystem outFs = outDir.getFileSystem(conf);
  92.     outFs.delete(outDir, true);
  93.     if (!inFs.mkdirs(inDir)) {
  94.       throw new IOException("Mkdirs failed to create " + inDir.toString());
  95.     }
  96.     {
  97.       // write input into input file
  98.       DataOutputStream file = inFs.create(new Path(inDir, "part-0"));
  99.       file.writeBytes(input);
  100.       file.close();
  101.     }
  102.     // configure the mapred Job which creates a tempfile in map.
  103.     conf.setJobName("testmap");
  104.     conf.setMapperClass(MapClass.class);        
  105.     conf.setReducerClass(IdentityReducer.class);
  106.     conf.setNumMapTasks(1);
  107.     conf.setNumReduceTasks(0);
  108.     FileInputFormat.setInputPaths(conf, inDir);
  109.     FileOutputFormat.setOutputPath(conf, outDir);
  110.     String TEST_ROOT_DIR = new Path(System.getProperty("test.build.data",
  111.                                       "/tmp")).toString().replace(' ', '+');
  112.     conf.set("test.build.data", TEST_ROOT_DIR);
  113.     // Launch job with default option for temp dir. 
  114.     // i.e. temp dir is ./tmp 
  115.     JobClient.runJob(conf);
  116.     outFs.delete(outDir, true);
  117.     // Launch job by giving relative path to temp dir.
  118.     conf.set("mapred.child.tmp", "../temp");
  119.     JobClient.runJob(conf);
  120.     outFs.delete(outDir, true);
  121.     // Launch job by giving absolute path to temp dir
  122.     conf.set("mapred.child.tmp", "/tmp");
  123.     JobClient.runJob(conf);
  124.     outFs.delete(outDir, true);
  125.   }
  126.   /**
  127.    * Tests task's temp directory.
  128.    * 
  129.    * In this test, we give different values to mapred.child.tmp
  130.    * both relative and absolute. And check whether the temp directory 
  131.    * is created. We also check whether java.io.tmpdir value is same as 
  132.    * the directory specified. We create a temp file and check if is is 
  133.    * created in the directory specified.
  134.    */
  135.   public void testTaskTempDir(){
  136.     try {
  137.       
  138.       // create configuration, dfs, file system and mapred cluster 
  139.       dfs = new MiniDFSCluster(new Configuration(), 1, true, null);
  140.       fileSys = dfs.getFileSystem();
  141.       mr = new MiniMRCluster(2, fileSys.getUri().toString(), 1);
  142.       JobConf conf = mr.createJobConf();
  143.       
  144.       // intialize input, output directories
  145.       Path inDir = new Path("testing/wc/input");
  146.       Path outDir = new Path("testing/wc/output");
  147.       String input = "The input";
  148.       
  149.       launchTest(conf, inDir, outDir, input);
  150.       
  151.     } catch(Exception e) {
  152.       e.printStackTrace();
  153.       fail("Exception in testing temp dir");
  154.       // close file system and shut down dfs and mapred cluster
  155.       try {
  156.         if (fileSys != null) {
  157.           fileSys.close();
  158.         }
  159.         if (dfs != null) {
  160.           dfs.shutdown();
  161.         }
  162.         if (mr != null) {
  163.           mr.shutdown();
  164.         }
  165.       } catch (IOException ioe) {
  166.         LOG.info("IO exception in closing file system)" );
  167.         ioe.printStackTrace();        
  168.       }
  169.     }
  170.   }
  171.   public static void main(String args[]){
  172.     TestMiniMRTaskTempDir test = new TestMiniMRTaskTempDir();
  173.     test.testTaskTempDir();
  174.   }
  175. }