com.google.cloud.bigtable.beam.sequencefiles.Main Maven / Gradle / Ivy
/*
* Copyright 2017 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.cloud.bigtable.beam.sequencefiles;
import java.io.File;
import java.net.URISyntaxException;
import java.util.Arrays;
/**
* Entry point for create-table/import/export job submission.
*
* @author igorbernstein2
*/
public class Main {
public static void main(String[] args) throws Exception {
if (args.length < 1) {
usage();
System.exit(1);
}
String[] subArgs = Arrays.copyOfRange(args, 1, args.length);
switch (args[0]) {
case "export":
ExportJob.main(subArgs);
break;
case "import":
ImportJob.main(subArgs);
break;
case "create-table":
CreateTableHelper.main(subArgs);
break;
default:
usage();
System.exit(1);
}
}
private static void usage() {
String jarName;
try {
jarName = new File(Main.class.getProtectionDomain().getCodeSource().getLocation().toURI().getPath()).getName();
} catch (URISyntaxException e) {
jarName = "";
}
System.out.printf(
"java -jar %s \n"
+ "Where can be 'export', 'import' or 'create-table'. To get further help, run: \n"
+ "java -jar %s --help\n",
jarName,
jarName
);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy