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

网格计算

开发平台:

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.streaming;
  19. import junit.framework.TestCase;
  20. import java.io.*;
  21. import java.util.*;
  22. import org.apache.hadoop.conf.Configuration;
  23. import org.apache.hadoop.fs.FileSystem;
  24. import org.apache.hadoop.fs.FileUtil;
  25. import org.apache.hadoop.fs.Path;
  26. import org.apache.hadoop.mapred.*;
  27. import org.apache.hadoop.hdfs.MiniDFSCluster;
  28. /**
  29.  * This test case tests the symlink creation
  30.  * utility provided by distributed caching 
  31.  */
  32. public class TestMultipleCachefiles extends TestCase
  33. {
  34.   String INPUT_FILE = "/testing-streaming/input.txt";
  35.   String OUTPUT_DIR = "/testing-streaming/out";
  36.   String CACHE_FILE = "/testing-streaming/cache.txt";
  37.   String CACHE_FILE_2 = "/testing-streaming/cache2.txt";
  38.   String input = "check to see if we can read this none reduce";
  39.   String map = "xargs cat ";
  40.   String reduce = "cat";
  41.   String mapString = "testlink";
  42.   String mapString2 = "testlink2";
  43.   String cacheString = "This is just the cache string";
  44.   String cacheString2 = "This is just the second cache string";
  45.   StreamJob job;
  46.   public TestMultipleCachefiles() throws IOException
  47.   {
  48.   }
  49.   public void testMultipleCachefiles()
  50.   {
  51.     try {
  52.       boolean mayExit = false;
  53.       MiniMRCluster mr = null;
  54.       MiniDFSCluster dfs = null; 
  55.       try{
  56.         Configuration conf = new Configuration();
  57.         dfs = new MiniDFSCluster(conf, 1, true, null);
  58.         FileSystem fileSys = dfs.getFileSystem();
  59.         String namenode = fileSys.getName();
  60.         mr  = new MiniMRCluster(1, namenode, 3);
  61.         // During tests, the default Configuration will use a local mapred
  62.         // So don't specify -config or -cluster
  63.         String strJobtracker = "mapred.job.tracker=" + "localhost:" + mr.getJobTrackerPort();
  64.         String strNamenode = "fs.default.name=" + namenode;
  65.         String argv[] = new String[] {
  66.           "-input", INPUT_FILE,
  67.           "-output", OUTPUT_DIR,
  68.           "-mapper", map,
  69.           "-reducer", reduce,
  70.           //"-verbose",
  71.           //"-jobconf", "stream.debug=set"
  72.           "-jobconf", strNamenode,
  73.           "-jobconf", strJobtracker,
  74.           "-jobconf", "stream.tmpdir="+System.getProperty("test.build.data","/tmp"),
  75.           "-jobconf", "mapred.child.java.opts=-Dcontrib.name=" + System.getProperty("contrib.name") + " " +
  76.                       "-Dbuild.test=" + System.getProperty("build.test") + " " +
  77.                       conf.get("mapred.child.java.opts",""),
  78.           "-cacheFile", "hdfs://"+fileSys.getName()+CACHE_FILE + "#" + mapString,
  79.           "-cacheFile", "hdfs://"+fileSys.getName()+CACHE_FILE_2 + "#" + mapString2
  80.         };
  81.         fileSys.delete(new Path(OUTPUT_DIR));
  82.         
  83.         DataOutputStream file = fileSys.create(new Path(INPUT_FILE));
  84.         file.writeBytes(mapString + "n");
  85.         file.writeBytes(mapString2 + "n");
  86.         file.close();
  87.         file = fileSys.create(new Path(CACHE_FILE));
  88.         file.writeBytes(cacheString);
  89.         file.close();
  90.         file = fileSys.create(new Path(CACHE_FILE_2));
  91.         file.writeBytes(cacheString2);
  92.         file.close();
  93.           
  94.         job = new StreamJob(argv, mayExit);     
  95.         job.go();
  96. fileSys = dfs.getFileSystem();
  97.         String line = null;
  98.         String line2 = null;
  99.         Path[] fileList = FileUtil.stat2Paths(fileSys.listStatus(
  100.                                      new Path(OUTPUT_DIR),
  101.                                      new OutputLogFilter()));
  102.         for (int i = 0; i < fileList.length; i++){
  103.           System.out.println(fileList[i].toString());
  104.           BufferedReader bread =
  105.             new BufferedReader(new InputStreamReader(fileSys.open(fileList[i])));
  106.           line = bread.readLine();
  107.           System.out.println(line);
  108.           line2 = bread.readLine();
  109.           System.out.println(line2);
  110.         }
  111.         assertEquals(cacheString + "t", line);
  112.         assertEquals(cacheString2 + "t", line2);
  113.       } finally{
  114.         if (dfs != null) { dfs.shutdown(); }
  115.         if (mr != null) { mr.shutdown();}
  116.       }
  117.       
  118.     } catch(Exception e) {
  119.       failTrace(e);
  120.     }
  121.   }
  122.   void failTrace(Exception e)
  123.   {
  124.     StringWriter sw = new StringWriter();
  125.     e.printStackTrace(new PrintWriter(sw));
  126.     fail(sw.toString());
  127.   }
  128.   public static void main(String[]args) throws Exception
  129.   {
  130.     new TestMultipleCachefiles().testMultipleCachefiles();
  131.   }
  132. }