/* * 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.data.management.trash; import java.io.IOException; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.apache.hadoop.util.Tool; import org.apache.hadoop.util.ToolRunner; import org.apache.log4j.Logger; import azkaban.jobExecutor.AbstractJob; import azkaban.utils.Props; /** * Job to run {@link Trash} cleanup in Azkaban or Hadoop. */ public class TrashCollectorJob extends AbstractJob implements Tool { private Configuration conf; private Trash trash; public static void main(String[] args) throws Exception { ToolRunner.run(new TrashCollectorJob(TrashCollectorJob.class.getName()), args); } public TrashCollectorJob(String id) { super(id, Logger.getLogger(TrashCollectorJob.class)); } public TrashCollectorJob(String id, Props props) throws IOException { super(id, Logger.getLogger(TrashCollectorJob.class)); this.conf = new Configuration(); this.trash = createTrash(props); } Trash createTrash(Props props) throws IOException { return TrashFactory.createTrash(FileSystem.get(getConf()), props.toProperties()); } /** * Move a path to trash. The absolute path of the input path will be replicated under the trash directory. * @param fs {@link org.apache.hadoop.fs.FileSystem} where path and trash exist. * @param path {@link org.apache.hadoop.fs.FileSystem} path to move to trash. * @param props {@link java.util.Properties} containing trash configuration. * @return true if move to trash was done successfully. * @throws IOException */ public static boolean moveToTrash(FileSystem fs, Path path, Props props) throws IOException { return TrashFactory.createTrash(fs, props.toProperties()).moveToTrash(path); } @Override public int run(String[] args) throws Exception { if (args.length < 1) { System.out.println("Must provide properties file as first argument."); return 1; } Props props = new Props(null, args[0]); new TrashCollectorJob(TrashCollectorJob.class.getName(), props).run(); return 0; } @Override public void setConf(Configuration configuration) { this.conf = configuration; } @Override public Configuration getConf() { return this.conf; } @Override public void run() throws Exception { if (this.trash != null) { this.trash.createTrashSnapshot(); this.trash.purgeTrashSnapshots(); } } }