AccumulatingReducer.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.fs;
  19. import java.io.IOException;
  20. import java.util.Iterator;
  21. import org.apache.commons.logging.Log;
  22. import org.apache.commons.logging.LogFactory;
  23. import org.apache.hadoop.io.UTF8;
  24. import org.apache.hadoop.io.WritableComparable;
  25. import org.apache.hadoop.mapred.MapReduceBase;
  26. import org.apache.hadoop.mapred.OutputCollector;
  27. import org.apache.hadoop.mapred.Reducer;
  28. import org.apache.hadoop.mapred.Reporter;
  29. /**
  30.  * Reducer that accumulates values based on their type.
  31.  * <p>
  32.  * The type is specified in the key part of the key-value pair 
  33.  * as a prefix to the key in the following way
  34.  * <p>
  35.  * <tt>type:key</tt>
  36.  * <p>
  37.  * The values are accumulated according to the types:
  38.  * <ul>
  39.  * <li><tt>s:</tt> - string, concatenate</li>
  40.  * <li><tt>f:</tt> - float, summ</li>
  41.  * <li><tt>l:</tt> - long, summ</li>
  42.  * </ul>
  43.  * 
  44.  */
  45. public class AccumulatingReducer extends MapReduceBase
  46.     implements Reducer<UTF8, UTF8, UTF8, UTF8> {
  47.   private static final Log LOG = LogFactory.getLog(AccumulatingReducer.class);
  48.   
  49.   protected String hostName;
  50.   
  51.   public AccumulatingReducer () {
  52.     LOG.info("Starting AccumulatingReducer !!!");
  53.     try {
  54.       hostName = java.net.InetAddress.getLocalHost().getHostName();
  55.     } catch(Exception e) {
  56.       hostName = "localhost";
  57.     }
  58.     LOG.info("Starting AccumulatingReducer on " + hostName);
  59.   }
  60.   
  61.   public void reduce(UTF8 key, 
  62.                      Iterator<UTF8> values,
  63.                      OutputCollector<UTF8, UTF8> output, 
  64.                      Reporter reporter
  65.                      ) throws IOException {
  66.     String field = key.toString();
  67.     reporter.setStatus("starting " + field + " ::host = " + hostName);
  68.     // concatenate strings
  69.     if (field.startsWith("s:")) {
  70.       String sSum = "";
  71.       while (values.hasNext())
  72.         sSum += values.next().toString() + ";";
  73.       output.collect(key, new UTF8(sSum));
  74.       reporter.setStatus("finished " + field + " ::host = " + hostName);
  75.       return;
  76.     }
  77.     // sum long values
  78.     if (field.startsWith("f:")) {
  79.       float fSum = 0;
  80.       while (values.hasNext())
  81.         fSum += Float.parseFloat(values.next().toString());
  82.       output.collect(key, new UTF8(String.valueOf(fSum)));
  83.       reporter.setStatus("finished " + field + " ::host = " + hostName);
  84.       return;
  85.     }
  86.     // sum long values
  87.     if (field.startsWith("l:")) {
  88.       long lSum = 0;
  89.       while (values.hasNext()) {
  90.         lSum += Long.parseLong(values.next().toString());
  91.       }
  92.       output.collect(key, new UTF8(String.valueOf(lSum)));
  93.     }
  94.     reporter.setStatus("finished " + field + " ::host = " + hostName);
  95.   }
  96. }