/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 gobblin.runtime.embedded;
import java.io.IOException;
import java.net.URISyntaxException;
import org.apache.commons.cli.CommandLine;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.util.ClassUtil;
import gobblin.annotation.Alias;
import gobblin.configuration.ConfigurationKeys;
import gobblin.data.management.copy.CopySource;
import gobblin.data.management.copy.RecursiveCopyableDataset;
import gobblin.runtime.api.JobTemplate;
import gobblin.runtime.api.SpecNotFoundException;
import gobblin.runtime.cli.EmbeddedGobblinCliOption;
import gobblin.runtime.cli.NotOnCli;
import gobblin.runtime.cli.PublicMethodsGobblinCliFactory;
import gobblin.runtime.template.ResourceBasedJobTemplate;
/**
* Embedded version of distcp.
* Usage:
* new EmbeddedGobblinDistcp(new Path("/source"), new Path("/dest")).run();
*/
public class EmbeddedGobblinDistcp extends EmbeddedGobblin {
@Alias(value = "distcp", description = "Distributed copy between Hadoop compatibly file systems.")
public static class CliFactory extends PublicMethodsGobblinCliFactory {
public CliFactory() {
super(EmbeddedGobblinDistcp.class);
}
@Override
public EmbeddedGobblin constructEmbeddedGobblin(CommandLine cli) throws JobTemplate.TemplateException, IOException {
String[] leftoverArgs = cli.getArgs();
if (leftoverArgs.length != 2) {
throw new RuntimeException("Unexpected number of arguments.");
}
Path from = new Path(leftoverArgs[0]);
Path to = new Path(leftoverArgs[1]);
return new EmbeddedGobblinDistcp(from, to);
}
@Override
public String getUsageString() {
return "[OPTIONS] <source> <target>";
}
}
public EmbeddedGobblinDistcp(Path from, Path to) throws JobTemplate.TemplateException, IOException {
super("Distcp");
try {
setTemplate(ResourceBasedJobTemplate.forResourcePath("templates/distcp.template"));
} catch (URISyntaxException | SpecNotFoundException exc) {
throw new RuntimeException("Could not instantiate an " + EmbeddedGobblinDistcp.class.getName(), exc);
}
this.setConfiguration("from", from.toString());
this.setConfiguration("to", to.toString());
// Infer source and target fs uris from the input paths
this.setConfiguration(ConfigurationKeys.SOURCE_FILEBASED_FS_URI, from.getFileSystem(new Configuration()).getUri().toString());
this.setConfiguration(ConfigurationKeys.WRITER_FILE_SYSTEM_URI, to.getFileSystem(new Configuration()).getUri().toString());
// add gobblin-data-management jar to distributed jars
this.distributeJar(ClassUtil.findContainingJar(CopySource.class));
}
/**
* Specifies that files in the target should be updated if they have changed in the source. Equivalent to -update
* option in Hadoop distcp.
*/
@EmbeddedGobblinCliOption(description = "Specifies files should be updated if they're different in the source.")
public EmbeddedGobblinDistcp update() {
this.setConfiguration(RecursiveCopyableDataset.UPDATE_KEY, Boolean.toString(true));
return this;
}
/**
* Specifies that files in the target that don't exist in the source should be deleted. Equivalent to -delete
* option in Hadoop distcp.
*/
@EmbeddedGobblinCliOption(description = "Delete files in target that don't exist on source.")
public EmbeddedGobblinDistcp delete() {
this.setConfiguration(RecursiveCopyableDataset.DELETE_KEY, Boolean.toString(true));
return this;
}
/**
* If {@link #delete()} is used, specifies that newly empty parent directories should also be deleted.
*/
@EmbeddedGobblinCliOption(description = "If deleting files on target, also delete newly empty parent directories.")
public EmbeddedGobblinDistcp deleteEmptyParentDirectories() {
this.setConfiguration(RecursiveCopyableDataset.DELETE_EMPTY_DIRECTORIES_KEY, Boolean.toString(true));
return this;
}
/**
* Run in simulate mode. Will log everythin it would copy, but not actually copy anything.
*/
public EmbeddedGobblinDistcp simulate() {
this.setConfiguration(CopySource.SIMULATE, Boolean.toString(true));
return this;
}
// Remove template from CLI
@Override
@NotOnCli
public EmbeddedGobblin setTemplate(String templateURI)
throws URISyntaxException, SpecNotFoundException, JobTemplate.TemplateException {
return super.setTemplate(templateURI);
}
}