TestJobDirCleanup.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.mapred;
  19. import java.io.File;
  20. import java.io.IOException;
  21. import junit.framework.TestCase;
  22. import org.apache.commons.logging.Log;
  23. import org.apache.commons.logging.LogFactory;
  24. import org.apache.hadoop.conf.Configuration;
  25. import org.apache.hadoop.examples.SleepJob;
  26. import org.apache.hadoop.fs.FileSystem;
  27. import org.apache.hadoop.hdfs.MiniDFSCluster;
  28. import org.apache.hadoop.util.ToolRunner;
  29. public class TestJobDirCleanup extends TestCase {
  30.   //The testcase brings up a cluster with many trackers, and
  31.   //runs a job with a single map and many reduces. The check is 
  32.   //to see whether the job directories are cleaned up at the
  33.   //end of the job (indirectly testing whether all tasktrackers
  34.   //got a KillJobAction).
  35.   private static final Log LOG =
  36.         LogFactory.getLog(TestEmptyJobWithDFS.class.getName());
  37.   private void runSleepJob(JobConf conf) throws Exception {
  38.     String[] args = { "-m", "1", "-r", "10", "-mt", "1000", "-rt", "10000" };
  39.     ToolRunner.run(conf, new SleepJob(), args);
  40.   }
  41.   public void testJobDirCleanup() throws IOException {
  42.     String namenode = null;
  43.     MiniDFSCluster dfs = null;
  44.     MiniMRCluster mr = null;
  45.     FileSystem fileSys = null;
  46.     try {
  47.       final int taskTrackers = 10;
  48.       final int jobTrackerPort = 60050;
  49.       Configuration conf = new Configuration();
  50.       JobConf mrConf = new JobConf();
  51.       mrConf.set("mapred.tasktracker.reduce.tasks.maximum", "1");
  52.       dfs = new MiniDFSCluster(conf, 1, true, null);
  53.       fileSys = dfs.getFileSystem();
  54.       namenode = fileSys.getUri().toString();
  55.       mr = new MiniMRCluster(10, namenode, 3, 
  56.           null, null, mrConf);
  57.       final String jobTrackerName = "localhost:" + mr.getJobTrackerPort();
  58.       JobConf jobConf = mr.createJobConf();
  59.       runSleepJob(jobConf);
  60.       for(int i=0; i < taskTrackers; ++i) {
  61.         String jobDirStr = mr.getTaskTrackerLocalDir(i)+
  62.                            "/taskTracker/jobcache";
  63.         File jobDir = new File(jobDirStr);
  64.         String[] contents = jobDir.list();
  65.         while (contents.length > 0) {
  66.           try {
  67.             Thread.sleep(1000);
  68.             LOG.warn(jobDir +" not empty yet");
  69.             contents = jobDir.list();
  70.           } catch (InterruptedException ie){}
  71.         }
  72.       }
  73.     } catch (Exception ee){
  74.     } finally {
  75.       if (fileSys != null) { fileSys.close(); }
  76.       if (dfs != null) { dfs.shutdown(); }
  77.       if (mr != null) { mr.shutdown(); }
  78.     }
  79.   }
  80. }