如何在java代码中使用S3DistCp

时间:2013-08-08 11:28:04

标签: java hadoop amazon-s3 amazon-emr

我想以编程方式将作业的输出从EMR群集复制到Amazon S3。

如何在java代码中使用S3DistCp来做同样的事情。

1 个答案:

答案 0 :(得分:3)

hadoop ToolRunner可以运行此..从S3DistCP extends Tool

开始

以下是用法示例:

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.util.ToolRunner;
import com.amazon.external.elasticmapreduce.s3distcp.S3DistCp

public class CustomS3DistCP{
  private static final Log log = LogFactory.getLog(CustomS3DistCP.class);

public static void main(String[] args) throws Exception {
     log.info("Running with args: " + args);

     System.exit(ToolRunner.run(new S3DistCp(), args));
   }

你必须在你的类路径中有s3distcp jar 您可以从shell脚本调用此程序。

希望有所帮助!