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

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.examples;
  19. import java.io.IOException;
  20. import java.util.ArrayList;
  21. import java.util.StringTokenizer;
  22. import java.util.Map.Entry;
  23. import org.apache.hadoop.io.Text;
  24. import org.apache.hadoop.mapred.JobClient;
  25. import org.apache.hadoop.mapred.JobConf;
  26. import org.apache.hadoop.mapred.lib.aggregate.ValueAggregatorBaseDescriptor;
  27. import org.apache.hadoop.mapred.lib.aggregate.ValueAggregatorJob;
  28. /**
  29.  * This is an example Aggregated Hadoop Map/Reduce application. It reads the
  30.  * text input files, breaks each line into words and counts them. The output is
  31.  * a locally sorted list of words and the count of how often they occurred.
  32.  * 
  33.  * To run: bin/hadoop jar hadoop-*-examples.jar aggregatewordcount <i>in-dir</i>
  34.  * <i>out-dir</i> <i>numOfReducers</i> textinputformat
  35.  * 
  36.  */
  37. public class AggregateWordCount {
  38.   public static class WordCountPlugInClass extends
  39.       ValueAggregatorBaseDescriptor {
  40.     @Override
  41.     public ArrayList<Entry<Text, Text>> generateKeyValPairs(Object key,
  42.                                                             Object val) {
  43.       String countType = LONG_VALUE_SUM;
  44.       ArrayList<Entry<Text, Text>> retv = new ArrayList<Entry<Text, Text>>();
  45.       String line = val.toString();
  46.       StringTokenizer itr = new StringTokenizer(line);
  47.       while (itr.hasMoreTokens()) {
  48.         Entry<Text, Text> e = generateEntry(countType, itr.nextToken(), ONE);
  49.         if (e != null) {
  50.           retv.add(e);
  51.         }
  52.       }
  53.       return retv;
  54.     }
  55.   }
  56.   /**
  57.    * The main driver for word count map/reduce program. Invoke this method to
  58.    * submit the map/reduce job.
  59.    * 
  60.    * @throws IOException
  61.    *           When there is communication problems with the job tracker.
  62.    */
  63.   @SuppressWarnings("unchecked")
  64.   public static void main(String[] args) throws IOException {
  65.     JobConf conf = ValueAggregatorJob.createValueAggregatorJob(args
  66.         , new Class[] {WordCountPlugInClass.class});
  67.    
  68.     JobClient.runJob(conf);
  69.   }
  70. }