View Javadoc

1   /**
2    *
3    * Licensed to the Apache Software Foundation (ASF) under one
4    * or more contributor license agreements.  See the NOTICE file
5    * distributed with this work for additional information
6    * regarding copyright ownership.  The ASF licenses this file
7    * to you under the Apache License, Version 2.0 (the
8    * "License"); you may not use this file except in compliance
9    * with the License.  You may obtain a copy of the License at
10   *
11   *     http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing, software
14   * distributed under the License is distributed on an "AS IS" BASIS,
15   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   * See the License for the specific language governing permissions and
17   * limitations under the License.
18   */
19  package org.apache.hadoop.hbase.mapreduce;
20  
21  import org.apache.hadoop.hbase.HBaseInterfaceAudience;
22  import org.apache.hadoop.hbase.classification.InterfaceAudience;
23  import org.apache.hadoop.hbase.classification.InterfaceStability;
24  import org.apache.hadoop.hbase.mapreduce.replication.VerifyReplication;
25  import org.apache.hadoop.hbase.snapshot.ExportSnapshot;
26  import org.apache.hadoop.util.ProgramDriver;
27  
28  /**
29   * Driver for hbase mapreduce jobs. Select which to run by passing
30   * name of job to this main.
31   */
32  @InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.TOOLS)
33  @InterfaceStability.Stable
34  public class Driver {
35    /**
36     * @param args
37     * @throws Throwable
38     */
39    public static void main(String[] args) throws Throwable {
40      ProgramDriver pgd = new ProgramDriver();
41  
42      pgd.addClass(RowCounter.NAME, RowCounter.class,
43        "Count rows in HBase table.");
44      pgd.addClass(CellCounter.NAME, CellCounter.class,
45        "Count cells in HBase table.");
46      pgd.addClass(Export.NAME, Export.class, "Write table data to HDFS.");
47      pgd.addClass(Import.NAME, Import.class, "Import data written by Export.");
48      pgd.addClass(ImportTsv.NAME, ImportTsv.class, "Import data in TSV format.");
49      pgd.addClass(LoadIncrementalHFiles.NAME, LoadIncrementalHFiles.class,
50                   "Complete a bulk data load.");
51      pgd.addClass(CopyTable.NAME, CopyTable.class,
52          "Export a table from local cluster to peer cluster.");
53      pgd.addClass(VerifyReplication.NAME, VerifyReplication.class, "Compare" +
54          " the data from tables in two different clusters. WARNING: It" +
55          " doesn't work for incrementColumnValues'd cells since the" +
56          " timestamp is changed after being appended to the log.");
57      pgd.addClass(WALPlayer.NAME, WALPlayer.class, "Replay WAL files.");
58      pgd.addClass(ExportSnapshot.NAME, ExportSnapshot.class, "Export" +
59          " the specific snapshot to a given FileSystem.");
60  
61      ProgramDriver.class.getMethod("driver", new Class [] {String[].class}).
62        invoke(pgd, new Object[]{args});
63    }
64  }