ValueAggregatorCombiner.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.mapred.lib.aggregate;
  19. import java.io.IOException;
  20. import java.util.Iterator;
  21. import org.apache.hadoop.io.Text;
  22. import org.apache.hadoop.io.Writable;
  23. import org.apache.hadoop.io.WritableComparable;
  24. import org.apache.hadoop.mapred.JobConf;
  25. import org.apache.hadoop.mapred.OutputCollector;
  26. import org.apache.hadoop.mapred.Reporter;
  27. /**
  28.  * This class implements the generic combiner of Aggregate.
  29.  */
  30. public class ValueAggregatorCombiner<K1 extends WritableComparable,
  31.                                      V1 extends Writable>
  32.   extends ValueAggregatorJobBase<K1, V1> {
  33.   /**
  34.    * Combiner does not need to configure.
  35.    */
  36.   public void configure(JobConf job) {
  37.   }
  38.   /** Combines values for a given key.  
  39.    * @param key the key is expected to be a Text object, whose prefix indicates
  40.    * the type of aggregation to aggregate the values. 
  41.    * @param values the values to combine
  42.    * @param output to collect combined values
  43.    */
  44.   public void reduce(Text key, Iterator<Text> values,
  45.                      OutputCollector<Text, Text> output, Reporter reporter) throws IOException {
  46.     String keyStr = key.toString();
  47.     int pos = keyStr.indexOf(ValueAggregatorDescriptor.TYPE_SEPARATOR);
  48.     String type = keyStr.substring(0, pos);
  49.     ValueAggregator aggregator = ValueAggregatorBaseDescriptor
  50.       .generateValueAggregator(type);
  51.     while (values.hasNext()) {
  52.       aggregator.addNextValue(values.next());
  53.     }
  54.     Iterator outputs = aggregator.getCombinerOutput().iterator();
  55.     while (outputs.hasNext()) {
  56.       Object v = outputs.next();
  57.       if (v instanceof Text) {
  58.         output.collect(key, (Text)v);
  59.       } else {
  60.         output.collect(key, new Text(v.toString()));
  61.       }
  62.     }
  63.   }
  64.   /** 
  65.    * Do nothing. 
  66.    *
  67.    */
  68.   public void close() throws IOException {
  69.   }
  70.   /** 
  71.    * Do nothing. Should not be called. 
  72.    *
  73.    */
  74.   public void map(K1 arg0, V1 arg1, OutputCollector<Text, Text> arg2,
  75.                   Reporter arg3) throws IOException {
  76.     throw new IOException ("should not be calledn");
  77.   }
  78. }