TestCustomOutputCommitter.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. /* Licensed to the Apache Software Foundation (ASF) under one
  2.  * or more contributor license agreements.  See the NOTICE file
  3.  * distributed with this work for additional information
  4.  * regarding copyright ownership.  The ASF licenses this file
  5.  * to you under the Apache License, Version 2.0 (the
  6.  * "License"); you may not use this file except in compliance
  7.  * with the License.  You may obtain a copy of the License at
  8.  *
  9.  *     http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.hadoop.mapred;
  18. import junit.framework.TestCase;
  19. import org.apache.hadoop.conf.Configuration;
  20. import org.apache.hadoop.fs.*;
  21. import org.apache.hadoop.util.ToolRunner;
  22. import org.apache.hadoop.hdfs.MiniDFSCluster;
  23. public class TestCustomOutputCommitter extends TestCase {
  24.   static final Path input = new Path("/test/input/");
  25.   static final Path output = new Path("/test/output");
  26.   
  27.   public void testCommitter() throws Exception {
  28.     MiniDFSCluster dfs = null;
  29.     MiniMRCluster mr = null;
  30.     FileSystem fs = null;
  31.     Path testFile = new Path(input, "testfile");
  32.     try {
  33.       Configuration conf = new Configuration();
  34.       //start the mini mr and dfs cluster.
  35.       dfs = new MiniDFSCluster(conf, 2 , true, null);
  36.       fs = dfs.getFileSystem();
  37.       FSDataOutputStream stream = fs.create(testFile);
  38.       stream.write("teststring".getBytes());
  39.       stream.close();
  40.       mr = new MiniMRCluster(2, fs.getUri().toString(), 1);
  41.       String[] args = new String[6];
  42.       args[0] = "-libjars";
  43.       // the testjob.jar as a temporary jar file 
  44.       // holding custom output committer
  45.       args[1] = "build/test/testjar/testjob.jar";
  46.       args[2] = "-D";
  47.       args[3] = "mapred.output.committer.class=testjar.CustomOutputCommitter";
  48.       args[4] = input.toString();
  49.       args[5] = output.toString();
  50.       JobConf jobConf = mr.createJobConf();
  51.       int ret = ToolRunner.run(jobConf, new WordCount(), args);
  52.       assertTrue("not failed ", ret == 0);
  53.     } finally {
  54.       if (dfs != null) {dfs.shutdown();};
  55.       if (mr != null) {mr.shutdown();};
  56.     }
  57.   }
  58. }