TestLocalJobControl.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.mapred.jobcontrol;
  19. import java.io.IOException;
  20. import java.util.ArrayList;
  21. import org.apache.commons.logging.Log;
  22. import org.apache.commons.logging.LogFactory;
  23. import org.apache.hadoop.fs.FileSystem;
  24. import org.apache.hadoop.fs.Path;
  25. import org.apache.hadoop.mapred.HadoopTestCase;
  26. import org.apache.hadoop.mapred.JobConf;
  27. /**
  28.  * HadoopTestCase that tests the local job runner.
  29.  */
  30. public class TestLocalJobControl extends HadoopTestCase {
  31.   public static final Log LOG = LogFactory.getLog(TestLocalJobControl.class
  32.       .getName());
  33.   /**
  34.    * Initialises a new instance of this test case to use a Local MR cluster and
  35.    * a local filesystem.
  36.    * 
  37.    * @throws IOException If an error occurs initialising this object.
  38.    */
  39.   public TestLocalJobControl() throws IOException {
  40.     super(HadoopTestCase.LOCAL_MR, HadoopTestCase.LOCAL_FS, 2, 2);
  41.   }
  42.   /**
  43.    * This is a main function for testing JobControl class. It first cleans all
  44.    * the dirs it will use. Then it generates some random text data in
  45.    * TestJobControlData/indir. Then it creates 4 jobs: Job 1: copy data from
  46.    * indir to outdir_1 Job 2: copy data from indir to outdir_2 Job 3: copy data
  47.    * from outdir_1 and outdir_2 to outdir_3 Job 4: copy data from outdir to
  48.    * outdir_4 The jobs 1 and 2 have no dependency. The job 3 depends on jobs 1
  49.    * and 2. The job 4 depends on job 3.
  50.    * 
  51.    * Then it creates a JobControl object and add the 4 jobs to the JobControl
  52.    * object. Finally, it creates a thread to run the JobControl object and
  53.    * monitors/reports the job states.
  54.    */
  55.   public void testLocalJobControlDataCopy() throws Exception {
  56.     FileSystem fs = FileSystem.get(createJobConf());
  57.     Path rootDataDir = new Path(System.getProperty("test.build.data", "."),
  58.         "TestLocalJobControlData");
  59.     Path indir = new Path(rootDataDir, "indir");
  60.     Path outdir_1 = new Path(rootDataDir, "outdir_1");
  61.     Path outdir_2 = new Path(rootDataDir, "outdir_2");
  62.     Path outdir_3 = new Path(rootDataDir, "outdir_3");
  63.     Path outdir_4 = new Path(rootDataDir, "outdir_4");
  64.     JobControlTestUtils.cleanData(fs, indir);
  65.     JobControlTestUtils.generateData(fs, indir);
  66.     JobControlTestUtils.cleanData(fs, outdir_1);
  67.     JobControlTestUtils.cleanData(fs, outdir_2);
  68.     JobControlTestUtils.cleanData(fs, outdir_3);
  69.     JobControlTestUtils.cleanData(fs, outdir_4);
  70.     ArrayList<Job> dependingJobs = null;
  71.     ArrayList<Path> inPaths_1 = new ArrayList<Path>();
  72.     inPaths_1.add(indir);
  73.     JobConf jobConf_1 = JobControlTestUtils.createCopyJob(inPaths_1, outdir_1);
  74.     Job job_1 = new Job(jobConf_1, dependingJobs);
  75.     ArrayList<Path> inPaths_2 = new ArrayList<Path>();
  76.     inPaths_2.add(indir);
  77.     JobConf jobConf_2 = JobControlTestUtils.createCopyJob(inPaths_2, outdir_2);
  78.     Job job_2 = new Job(jobConf_2, dependingJobs);
  79.     ArrayList<Path> inPaths_3 = new ArrayList<Path>();
  80.     inPaths_3.add(outdir_1);
  81.     inPaths_3.add(outdir_2);
  82.     JobConf jobConf_3 = JobControlTestUtils.createCopyJob(inPaths_3, outdir_3);
  83.     dependingJobs = new ArrayList<Job>();
  84.     dependingJobs.add(job_1);
  85.     dependingJobs.add(job_2);
  86.     Job job_3 = new Job(jobConf_3, dependingJobs);
  87.     ArrayList<Path> inPaths_4 = new ArrayList<Path>();
  88.     inPaths_4.add(outdir_3);
  89.     JobConf jobConf_4 = JobControlTestUtils.createCopyJob(inPaths_4, outdir_4);
  90.     dependingJobs = new ArrayList<Job>();
  91.     dependingJobs.add(job_3);
  92.     Job job_4 = new Job(jobConf_4, dependingJobs);
  93.     JobControl theControl = new JobControl("Test");
  94.     theControl.addJob(job_1);
  95.     theControl.addJob(job_2);
  96.     theControl.addJob(job_3);
  97.     theControl.addJob(job_4);
  98.     Thread theController = new Thread(theControl);
  99.     theController.start();
  100.     while (!theControl.allFinished()) {
  101.       LOG.debug("Jobs in waiting state: " + theControl.getWaitingJobs().size());
  102.       LOG.debug("Jobs in ready state: " + theControl.getReadyJobs().size());
  103.       LOG.debug("Jobs in running state: " + theControl.getRunningJobs().size());
  104.       LOG.debug("Jobs in success state: "
  105.           + theControl.getSuccessfulJobs().size());
  106.       LOG.debug("Jobs in failed state: " + theControl.getFailedJobs().size());
  107.       LOG.debug("n");
  108.       try {
  109.         Thread.sleep(5000);
  110.       } catch (Exception e) {
  111.       }
  112.     }
  113.     assertEquals("Some jobs failed", 0, theControl.getFailedJobs().size());
  114.     theControl.stop();
  115.   }
  116. }