MapReduceアプリケーションの実装

MapReduceアプリケーションを実装します。

  1. src\main\java\org\apache\hadoop\examples\wordcount.javaを作成します。
  2. 次のJavaコードをコピーし、新しいファイルに貼り付けます。
    package org.apache.hadoop.examples;
     
    import java.io.IOException;
    import java.util.StringTokenizer;
    import org.apache.hadoop.conf.Configuration;
    import org.apache.hadoop.fs.Path;
    import org.apache.hadoop.io.IntWritable;
    import org.apache.hadoop.io.Text;
    import org.apache.hadoop.mapreduce.Job;
    import org.apache.hadoop.mapreduce.Mapper;
    import org.apache.hadoop.mapreduce.Reducer;
    import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
    import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
    import org.apache.hadoop.util.GenericOptionsParser;
     
    /**
     * Simple Word count application that defines Mapper and Reducer classes that counts the words in a give input file
     */
    public class WordCount {
     
        public static class TokenizerMapper
            extends Mapper<Object, Text, Text, IntWritable>{
     
        private final static IntWritable one = new IntWritable(1);
        private Text word = new Text();
     
        // map function is called for every line in the input file
        public void map(Object key, Text value, Context context
                        ) throws IOException, InterruptedException {
            StringTokenizer itr = new StringTokenizer(value.toString());
            while (itr.hasMoreTokens()) {
             word.set(itr.nextToken());
     
            // Update count as 1 for every word read from input line
             context.write(word, one);
            }
        }
    }
     
    public static class IntSumReducer
            extends Reducer<Text,IntWritable,Text,IntWritable> {
        private IntWritable result = new IntWritable();
     
       // reduce function is called with list of values sent by map function
        public void reduce(Text key, Iterable<IntWritable> values,
                            Context context) throws IOException, InterruptedException {
    
            // perform necessary aggregate operation and write result to the context
    
            int sum = 0;
            for (IntWritable val : values) {
              sum += val.get();
            }
            result.set(sum);
            context.write(key, result);
        }
    }
     
    /**
     * Driver code to provide the mapper & reducer function classes for Hadoop Map Reduce framework
     */
    public static void main(String[] args) throws Exception {
        Configuration conf = new Configuration();
        String[] otherArgs = new GenericOptionsParser(conf, args).getRemainingArgs();
        if (otherArgs.length != 2) {
            System.err.println("Usage: wordcount <in> <out>");
            System.exit(2);
        }
        Job job = new Job(conf, "word count");
        job.setJarByClass(WordCount.class);
        job.setMapperClass(TokenizerMapper.class);
        job.setCombinerClass(IntSumReducer.class);
        job.setReducerClass(IntSumReducer.class);
        job.setOutputKeyClass(Text.class);
        job.setOutputValueClass(IntWritable.class);
        FileInputFormat.addInputPath(job, new Path(otherArgs[0]));
        FileOutputFormat.setOutputPath(job, new Path(otherArgs[1]));
        System.exit(job.waitForCompletion(true) ? 0 : 1);
        }
    }
  3. ファイルを閉じます。

アプリケーションJARの作成

プロジェクト・ルート・フォルダからmvn clean packageを実行して、ターゲット・フォルダにアプリケーションJARを構築します。たとえば、wordcountjava-1.0-SNAPSHOT.jarです。

mvn clean package

このコマンドは、以前のビルド・アーティファクトをすべてクリーンアップし、まだインストールされていない依存関係をダウンロードしてから、アプリケーションをビルドおよびパッケージ化します。

コマンドが終了すると、wordcountjava/targetディレクトリにはwordcountjava-1.0-SNAPSHOT.jarという名前のファイルが含まれます。

ノート

wordcountjava-1.0-SNAPSHOT.jarファイルはuberjarで、WordCountジョブのみでなく、実行時にジョブに必要な依存関係も含まれます。

MapReduceアプリケーションJARの実行

JARを任意のノードにコピーします。例:

- yarn jar /tmp/wordcountjava-1.0-SNAPSHOT.jar org.apache.hadoop.examples.WordCount /example/data/input.txt /example/data/wordcountout

パラメータ:

  • /example/data/input.txt: 入力テキスト・ファイルのHDFSパス
  • /example/data/wordcountout: 結果のHDFSパス(リデューサの出力)

出力例:

 >> hdfs dfs -cat /example/data/wordcountout/* 

          zeal    1
          zelus   1
          zenith  2
ノート

wordcountjava-1.0-SNAPSHOT.jarファイルは、maven-shade-pluginを介してビルドされる場合のfat JARです。または、オプションとして-libjarsを使用して、ジョブ・クラス・パスに追加のJARを指定します。セキュアなクラスタでは、ジョブを発行する前に、kinitおよび適切なRangerポリシーが必要です。