TestCompressedEmptyMapOutputs.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.mapred;
  19. import java.io.IOException;
  20. import org.apache.hadoop.conf.Configuration;
  21. import org.apache.hadoop.examples.RandomWriter;
  22. import org.apache.hadoop.fs.FileSystem;
  23. import org.apache.hadoop.fs.Path;
  24. import org.apache.hadoop.hdfs.MiniDFSCluster;
  25. import org.apache.hadoop.io.BytesWritable;
  26. import org.apache.hadoop.mapred.lib.IdentityReducer;
  27. import org.apache.hadoop.util.ToolRunner;
  28. import junit.framework.TestCase;
  29. /**
  30.  * A JUnit test to test the Map-Reduce framework's sort in presence of 
  31.  * null intermediate map-outputs, when compression is enabled for intermediate
  32.  * map-outputs. 
  33.  */
  34. public class TestCompressedEmptyMapOutputs extends TestCase {
  35.   // Input/Output paths for sort
  36.   private static final Path SORT_INPUT_PATH = new Path("/sort/input");
  37.   private static final Path SORT_OUTPUT_PATH = new Path("/sort/output");
  38.   // Knobs to control randomwriter; and hence sort
  39.   private static final int NUM_HADOOP_SLAVES = 3;
  40.   private static final int RW_BYTES_PER_MAP = 50000;
  41.   private static final int RW_MAPS_PER_HOST = 5;
  42.   
  43.   private static void runRandomWriter(JobConf job, Path sortInput) 
  44.   throws Exception {
  45.     // Scale down the default settings for RandomWriter for the test-case
  46.     // Generates NUM_HADOOP_SLAVES * RW_MAPS_PER_HOST * RW_BYTES_PER_MAP -> 1MB
  47.     job.setInt("test.randomwrite.bytes_per_map", RW_BYTES_PER_MAP);
  48.     job.setInt("test.randomwriter.maps_per_host", RW_MAPS_PER_HOST);
  49.     String[] rwArgs = {sortInput.toString()};
  50.     
  51.     // Run RandomWriter
  52.     assertEquals(ToolRunner.run(job, new RandomWriter(), rwArgs), 0);
  53.   }
  54.   static class SinkMapper<K, V>
  55.   extends MapReduceBase implements Mapper<K, V, K, V> {
  56.     public void map(K key, V val,
  57.         OutputCollector<K, V> output, Reporter reporter)
  58.     throws IOException {
  59.       // Don't output anything!
  60.       if (false) output.collect(key, val);
  61.     }
  62.   }
  63.   private static void runSort(JobConf jobConf, Path sortInput, Path sortOutput) 
  64.   throws Exception {
  65.     // Set up the job
  66.     jobConf.setJobName("null-sorter");
  67.     
  68.     jobConf.setMapperClass(SinkMapper.class);
  69.     jobConf.setReducerClass(IdentityReducer.class);
  70.     jobConf.setNumReduceTasks(2);
  71.     jobConf.setInputFormat(SequenceFileInputFormat.class);
  72.     jobConf.setOutputFormat(SequenceFileOutputFormat.class);
  73.     jobConf.setOutputKeyClass(BytesWritable.class);
  74.     jobConf.setOutputValueClass(BytesWritable.class);
  75.     
  76.     FileInputFormat.setInputPaths(jobConf, sortInput);
  77.     FileOutputFormat.setOutputPath(jobConf, sortOutput);
  78.     // Compress the intermediate map-outputs!
  79.     jobConf.setCompressMapOutput(true);
  80.     // Run the job
  81.     JobClient.runJob(jobConf);
  82.   }
  83.   
  84.   public void testMapReduceSortWithCompressedEmptyMapOutputs() 
  85.   throws Exception {
  86.     MiniDFSCluster dfs = null;
  87.     MiniMRCluster mr = null;
  88.     FileSystem fileSys = null;
  89.     try {
  90.       Configuration conf = new Configuration();
  91.       // Start the mini-MR and mini-DFS clusters
  92.       dfs = new MiniDFSCluster(conf, NUM_HADOOP_SLAVES, true, null);
  93.       fileSys = dfs.getFileSystem();
  94.       mr = new MiniMRCluster(NUM_HADOOP_SLAVES, fileSys.getUri().toString(), 1);
  95.       // Run randomwriter to generate input for 'sort'
  96.       runRandomWriter(mr.createJobConf(), SORT_INPUT_PATH);
  97.       
  98.       // Run sort
  99.       runSort(mr.createJobConf(), SORT_INPUT_PATH, SORT_OUTPUT_PATH);
  100.     } finally {
  101.       if (dfs != null) { dfs.shutdown(); }
  102.       if (mr != null) { mr.shutdown();
  103.       }
  104.     }
  105.   }
  106. }