ExampleDriver.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.examples;
  19. import org.apache.hadoop.examples.dancing.DistributedPentomino;
  20. import org.apache.hadoop.examples.dancing.Sudoku;
  21. import org.apache.hadoop.examples.terasort.TeraGen;
  22. import org.apache.hadoop.examples.terasort.TeraSort;
  23. import org.apache.hadoop.examples.terasort.TeraValidate;
  24. import org.apache.hadoop.util.ProgramDriver;
  25. /**
  26.  * A description of an example program based on its class and a 
  27.  * human-readable description.
  28.  */
  29. public class ExampleDriver {
  30.   
  31.   public static void main(String argv[]){
  32.     int exitCode = -1;
  33.     ProgramDriver pgd = new ProgramDriver();
  34.     try {
  35.       pgd.addClass("wordcount", WordCount.class, 
  36.                    "A map/reduce program that counts the words in the input files.");
  37.       pgd.addClass("aggregatewordcount", AggregateWordCount.class, 
  38.                    "An Aggregate based map/reduce program that counts the words in the input files.");
  39.       pgd.addClass("aggregatewordhist", AggregateWordHistogram.class, 
  40.                    "An Aggregate based map/reduce program that computes the histogram of the words in the input files.");
  41.       pgd.addClass("grep", Grep.class, 
  42.                    "A map/reduce program that counts the matches of a regex in the input.");
  43.       pgd.addClass("randomwriter", RandomWriter.class, 
  44.                    "A map/reduce program that writes 10GB of random data per node.");
  45.       pgd.addClass("randomtextwriter", RandomTextWriter.class, 
  46.       "A map/reduce program that writes 10GB of random textual data per node.");
  47.       pgd.addClass("sort", Sort.class, "A map/reduce program that sorts the data written by the random writer.");
  48.       pgd.addClass("pi", PiEstimator.class, "A map/reduce program that estimates Pi using monte-carlo method.");
  49.       pgd.addClass("pentomino", DistributedPentomino.class,
  50.       "A map/reduce tile laying program to find solutions to pentomino problems.");
  51.       pgd.addClass("secondarysort", SecondarySort.class,
  52.                    "An example defining a secondary sort to the reduce.");
  53.       pgd.addClass("sudoku", Sudoku.class, "A sudoku solver.");
  54.       pgd.addClass("sleep", SleepJob.class, "A job that sleeps at each map and reduce task.");
  55.       pgd.addClass("join", Join.class, "A job that effects a join over sorted, equally partitioned datasets");
  56.       pgd.addClass("multifilewc", MultiFileWordCount.class, "A job that counts words from several files.");
  57.       pgd.addClass("dbcount", DBCountPageView.class, "An example job that count the pageview counts from a database.");
  58.       pgd.addClass("teragen", TeraGen.class, "Generate data for the terasort");
  59.       pgd.addClass("terasort", TeraSort.class, "Run the terasort");
  60.       pgd.addClass("teravalidate", TeraValidate.class, "Checking results of terasort");
  61.       pgd.driver(argv);
  62.       
  63.       // Success
  64.       exitCode = 0;
  65.     }
  66.     catch(Throwable e){
  67.       e.printStackTrace();
  68.     }
  69.     
  70.     System.exit(exitCode);
  71.   }
  72. }