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

网格计算

开发平台:

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.util.ArrayList;
  20. import org.apache.hadoop.conf.Configuration;
  21. import org.apache.hadoop.fs.FileSystem;
  22. import org.apache.hadoop.fs.Path;
  23. import org.apache.hadoop.mapred.JobConf;
  24. /**
  25.  * This class performs unit test for Job/JobControl classes.
  26.  *  
  27.  */
  28. public class TestJobControl extends junit.framework.TestCase {
  29.   /**
  30.    * This is a main function for testing JobControl class.
  31.    * It first cleans all the dirs it will use. Then it generates some random text
  32.    * data in TestJobControlData/indir. Then it creates 4 jobs: 
  33.    *      Job 1: copy data from indir to outdir_1
  34.    *      Job 2: copy data from indir to outdir_2
  35.    *      Job 3: copy data from outdir_1 and outdir_2 to outdir_3
  36.    *      Job 4: copy data from outdir to outdir_4
  37.    * The jobs 1 and 2 have no dependency. The job 3 depends on jobs 1 and 2.
  38.    * The job 4 depends on job 3.
  39.    * 
  40.    * Then it creates a JobControl object and add the 4 jobs to the JobControl object.
  41.    * Finally, it creates a thread to run the JobControl object and monitors/reports
  42.    * the job states.
  43.    */
  44.   public static void doJobControlTest() throws Exception {
  45.     Configuration defaults = new Configuration();
  46.     FileSystem fs = FileSystem.get(defaults);
  47.     Path rootDataDir = new Path(System.getProperty("test.build.data", "."), "TestJobControlData");
  48.     Path indir = new Path(rootDataDir, "indir");
  49.     Path outdir_1 = new Path(rootDataDir, "outdir_1");
  50.     Path outdir_2 = new Path(rootDataDir, "outdir_2");
  51.     Path outdir_3 = new Path(rootDataDir, "outdir_3");
  52.     Path outdir_4 = new Path(rootDataDir, "outdir_4");
  53.     JobControlTestUtils.cleanData(fs, indir);
  54.     JobControlTestUtils.generateData(fs, indir);
  55.     JobControlTestUtils.cleanData(fs, outdir_1);
  56.     JobControlTestUtils.cleanData(fs, outdir_2);
  57.     JobControlTestUtils.cleanData(fs, outdir_3);
  58.     JobControlTestUtils.cleanData(fs, outdir_4);
  59.     ArrayList<Job> dependingJobs = null;
  60.     ArrayList<Path> inPaths_1 = new ArrayList<Path>();
  61.     inPaths_1.add(indir);
  62.     JobConf jobConf_1 = JobControlTestUtils.createCopyJob(inPaths_1, outdir_1);
  63.     Job job_1 = new Job(jobConf_1, dependingJobs);
  64.     ArrayList<Path> inPaths_2 = new ArrayList<Path>();
  65.     inPaths_2.add(indir);
  66.     JobConf jobConf_2 = JobControlTestUtils.createCopyJob(inPaths_2, outdir_2);
  67.     Job job_2 = new Job(jobConf_2, dependingJobs);
  68.     ArrayList<Path> inPaths_3 = new ArrayList<Path>();
  69.     inPaths_3.add(outdir_1);
  70.     inPaths_3.add(outdir_2);
  71.     JobConf jobConf_3 = JobControlTestUtils.createCopyJob(inPaths_3, outdir_3);
  72.     dependingJobs = new ArrayList<Job>();
  73.     dependingJobs.add(job_1);
  74.     dependingJobs.add(job_2);
  75.     Job job_3 = new Job(jobConf_3, dependingJobs);
  76.     ArrayList<Path> inPaths_4 = new ArrayList<Path>();
  77.     inPaths_4.add(outdir_3);
  78.     JobConf jobConf_4 = JobControlTestUtils.createCopyJob(inPaths_4, outdir_4);
  79.     dependingJobs = new ArrayList<Job>();
  80.     dependingJobs.add(job_3);
  81.     Job job_4 = new Job(jobConf_4, dependingJobs);
  82.     JobControl theControl = new JobControl("Test");
  83.     theControl.addJob(job_1);
  84.     theControl.addJob(job_2);
  85.     theControl.addJob(job_3);
  86.     theControl.addJob(job_4);
  87.     Thread theController = new Thread(theControl);
  88.     theController.start();
  89.     while (!theControl.allFinished()) {
  90.       System.out.println("Jobs in waiting state: "
  91.                          + theControl.getWaitingJobs().size());
  92.       System.out.println("Jobs in ready state: "
  93.                          + theControl.getReadyJobs().size());
  94.       System.out.println("Jobs in running state: "
  95.                          + theControl.getRunningJobs().size());
  96.       System.out.println("Jobs in success state: "
  97.                          + theControl.getSuccessfulJobs().size());
  98.       System.out.println("Jobs in failed state: "
  99.                          + theControl.getFailedJobs().size());
  100.       System.out.println("n");
  101.       try {
  102.         Thread.sleep(5000);
  103.       } catch (Exception e) {
  104.       }
  105.     }
  106.     System.out.println("Jobs are all done???");
  107.     System.out.println("Jobs in waiting state: "
  108.                        + theControl.getWaitingJobs().size());
  109.     System.out.println("Jobs in ready state: "
  110.                        + theControl.getReadyJobs().size());
  111.     System.out.println("Jobs in running state: "
  112.                        + theControl.getRunningJobs().size());
  113.     System.out.println("Jobs in success state: "
  114.                        + theControl.getSuccessfulJobs().size());
  115.     System.out.println("Jobs in failed state: "
  116.                        + theControl.getFailedJobs().size());
  117.     System.out.println("n");
  118.         
  119.     if (job_1.getState() != Job.FAILED && 
  120.         job_1.getState() != Job.DEPENDENT_FAILED && 
  121.         job_1.getState() != Job.SUCCESS) {
  122.            
  123.       String states = "job_1:  " + job_1.getState() + "n";
  124.       throw new Exception("The state of job_1 is not in a complete staten" + states);
  125.     }
  126.         
  127.     if (job_2.getState() != Job.FAILED &&
  128.         job_2.getState() != Job.DEPENDENT_FAILED && 
  129.         job_2.getState() != Job.SUCCESS) {
  130.            
  131.       String states = "job_2:  " + job_2.getState() + "n";
  132.       throw new Exception("The state of job_2 is not in a complete staten" + states);
  133.     }
  134.         
  135.     if (job_3.getState() != Job.FAILED && 
  136.         job_3.getState() != Job.DEPENDENT_FAILED && 
  137.         job_3.getState() != Job.SUCCESS) {
  138.            
  139.       String states = "job_3:  " + job_3.getState() + "n";
  140.       throw new Exception("The state of job_3 is not in a complete staten" + states);
  141.     }
  142.     if (job_4.getState() != Job.FAILED && 
  143.         job_4.getState() != Job.DEPENDENT_FAILED && 
  144.         job_4.getState() != Job.SUCCESS) {
  145.            
  146.       String states = "job_4:  " + job_4.getState() + "n";
  147.       throw new Exception("The state of job_4 is not in a complete staten" + states);
  148.     }
  149.         
  150.     if (job_1.getState() == Job.FAILED || 
  151.         job_2.getState() == Job.FAILED ||
  152.         job_1.getState() == Job.DEPENDENT_FAILED || 
  153.         job_2.getState() == Job.DEPENDENT_FAILED) {
  154.       if (job_3.getState() != Job.DEPENDENT_FAILED) {
  155.         String states = "job_1:  " + job_1.getState() + "n";
  156.         states = "job_2:  " + job_2.getState() + "n";
  157.         states = "job_3:  " + job_3.getState() + "n";
  158.         states = "job_4:  " + job_4.getState() + "n";
  159.         throw new Exception("The states of jobs 1, 2, 3, 4 are not consistentn" + states);
  160.       }
  161.     }
  162.     if (job_3.getState() == Job.FAILED || 
  163.         job_3.getState() == Job.DEPENDENT_FAILED) {
  164.       if (job_4.getState() != Job.DEPENDENT_FAILED) {
  165.         String states = "job_3:  " + job_3.getState() + "n";
  166.         states = "job_4:  " + job_4.getState() + "n";
  167.         throw new Exception("The states of jobs 3, 4 are not consistentn" + states);
  168.       }
  169.     }
  170.         
  171.     theControl.stop();
  172.   }
  173.   public void testJobControl() throws Exception {
  174.     doJobControlTest();
  175.   }
  176.     
  177.   public static void main(String[] args) {
  178.     TestJobControl test = new TestJobControl();
  179.     try {
  180.       test.testJobControl();
  181.     }
  182.     catch (Exception e) {
  183.       e.printStackTrace();
  184.     }
  185.   }
  186. }