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

网格计算

开发平台:

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;
  19. import java.io.UnsupportedEncodingException;
  20. import java.util.List;
  21. import org.apache.commons.logging.Log;
  22. import org.apache.commons.logging.LogFactory;
  23. import org.apache.hadoop.mapred.JobConf;
  24. import org.apache.hadoop.mapred.Partitioner;
  25. import org.apache.hadoop.mapred.lib.KeyFieldHelper.KeyDescription;
  26.  /**   
  27.   *  Defines a way to partition keys based on certain key fields (also see
  28.   *  {@link KeyFieldBasedComparator}.
  29.   *  The key specification supported is of the form -k pos1[,pos2], where,
  30.   *  pos is of the form f[.c][opts], where f is the number
  31.   *  of the key field to use, and c is the number of the first character from
  32.   *  the beginning of the field. Fields and character posns are numbered 
  33.   *  starting with 1; a character position of zero in pos2 indicates the
  34.   *  field's last character. If '.c' is omitted from pos1, it defaults to 1
  35.   *  (the beginning of the field); if omitted from pos2, it defaults to 0 
  36.   *  (the end of the field).
  37.   * 
  38.   */
  39. public class KeyFieldBasedPartitioner<K2, V2> implements Partitioner<K2, V2> {
  40.   private static final Log LOG = LogFactory.getLog(KeyFieldBasedPartitioner.class.getName());
  41.   private int numOfPartitionFields;
  42.   
  43.   private KeyFieldHelper keyFieldHelper = new KeyFieldHelper();
  44.   public void configure(JobConf job) {
  45.     String keyFieldSeparator = job.get("map.output.key.field.separator", "t");
  46.     keyFieldHelper.setKeyFieldSeparator(keyFieldSeparator);
  47.     if (job.get("num.key.fields.for.partition") != null) {
  48.       LOG.warn("Using deprecated num.key.fields.for.partition. " +
  49.        "Use mapred.text.key.partitioner.options instead");
  50.       this.numOfPartitionFields = job.getInt("num.key.fields.for.partition",0);
  51.       keyFieldHelper.setKeyFieldSpec(1,numOfPartitionFields);
  52.     } else {
  53.       String option = job.getKeyFieldPartitionerOption();
  54.       keyFieldHelper.parseOption(option);
  55.     }
  56.   }
  57.   public int getPartition(K2 key, V2 value,
  58.       int numReduceTasks) {
  59.     byte[] keyBytes;
  60.     List <KeyDescription> allKeySpecs = keyFieldHelper.keySpecs();
  61.     if (allKeySpecs.size() == 0) {
  62.       return (key.toString().hashCode() & Integer.MAX_VALUE) % numReduceTasks;
  63.     }
  64.     try {
  65.       keyBytes = key.toString().getBytes("UTF-8");
  66.     } catch (UnsupportedEncodingException e) {
  67.       throw new RuntimeException("The current system does not " +
  68.           "support UTF-8 encoding!", e);
  69.     }
  70.     int []lengthIndicesFirst = keyFieldHelper.getWordLengths(keyBytes, 0, 
  71.         keyBytes.length);
  72.     int currentHash = 0;
  73.     for (KeyDescription keySpec : allKeySpecs) {
  74.       int startChar = keyFieldHelper.getStartOffset(keyBytes, 0, keyBytes.length, 
  75.           lengthIndicesFirst, keySpec);
  76.       int endChar = keyFieldHelper.getEndOffset(keyBytes, 0, keyBytes.length, 
  77.           lengthIndicesFirst, keySpec);
  78.       currentHash = hashCode(keyBytes, startChar, endChar, 
  79.           currentHash);
  80.     }
  81.     return (currentHash & Integer.MAX_VALUE) % numReduceTasks;
  82.   }
  83.   
  84.   protected int hashCode(byte[] b, int start, int end, int currentHash) {
  85.     for (int i = start; i <= end; i++) {
  86.       currentHash = 31*currentHash + b[i];
  87.     }
  88.     return currentHash;
  89.   }
  90. }