[ Skip to the content ]

Institute of Formal and Applied Linguistics Wiki


[ Back to the navigation ]

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
courses:mapreduce-tutorial:step-29 [2012/01/29 17:26]
straka
courses:mapreduce-tutorial:step-29 [2012/02/05 18:49]
straka
Line 1: Line 1:
-====== MapReduce Tutorial : Custom input formats ======+====== MapReduce Tutorial : Custom sorting and grouping comparators. ======
  
-Every custom format reading keys of type ''K'' and values of type ''V'' must subclass [[http://hadoop.apache.org/common/docs/r1.0.0/api/org/apache/hadoop/mapreduce/InputFormat.html|InputFormat<K, V>]]. Usually it is easier to subclass [[http://hadoop.apache.org/common/docs/r1.0.0/api/org/apache/hadoop/mapreduce/lib/input/FileInputFormat.html|FileInputFormat<K, V>]] -- the file listing and splitting is then solved by the ''FileInputFormat'' itself.+====== Fast sorting comparator ======
  
-===== WholeFileInputFormat ===== +The keys are sorted before processed by a reducer, using a 
- +[[http://hadoop.apache.org/common/docs/r1.0.0/api/org/apache/hadoop/io/RawComparator.html|Raw comparator]]. The default comparator uses the [[compareTo]] method provided by the key typewhich is a subclass of [[http://hadoop.apache.org/common/docs/r1.0.0/api/org/apache/hadoop/io/WritableComparable.html|WritableComparable]]. Consider for example the following ''IntPair'' type:
-We start by creating ''WholeFileInputFormat'', which reads any file and return exactly one input pair (input_path, file_content) with types (''Text'', ''BytesWritable''). The format does not allow file splitting -- each file will be processed by exactly one mapper. +
- +
-The main functionality lays in ''WholeFileRecordReader'', a subclass of [[http://hadoop.apache.org/common/docs/r1.0.0/api/org/apache/hadoop/mapreduce/RecordReader.html|RecordReader<Text, BytesWritable]].+
  
 <code java> <code java>
-public class WholeFileInputFormat extends FileInputFormat<Text, BytesWritable> { +public static class IntPair implements WritableComparable<IntPair> { 
-  // Helper class, which does the actual work -- reads the (path, content) input pair. +  private int first = 0
-  public static class WholeFileRecordReader extends RecordReader<Text, BytesWritable>+  private int second = 0;
-    private Path file; +
-    int length+
-    private boolean value_read; +
-    private Text key; +
-    private BytesWritable value; +
-    DataInputStream in;+
  
-    public void initialize(InputSplit genericSplitTaskAttemptContext contextthrows IOException { +  public void set(int leftint right) { first left; second = right} 
-      FileSplit split (FileSplit) genericSplit+  public int getFirst() { return first} 
-      file = split.getPath(); +  public int getSecond() { return second}
-      length = (int) split.getLength(); +
-      key = null; +
-      value = null; +
-      value_read = false;+
  
-      FileSystem fs file.getFileSystem(context.getConfiguration()); +  public void readFields(DataInput in) throws IOException { 
-      in = fs.open(split.getPath());+    first in.readInt(); 
 +    second = in.readInt(); 
 +  } 
 +  public void write(DataOutput out) throws IOException { 
 +    out.writeInt(first); 
 +    out.writeInt(second); 
 +  }
  
-      CompressionCodecFactory compressionCodecs = new CompressionCodecFactory(context.getConfiguration()); +  public int compareTo(IntPair o{ 
-      CompressionCodec codec = compressionCodecs.getCodec(file); +    if (first != o.firstreturn first < o.first ? -1 : 1; 
-      if (codec != null+    else return second < o.second ? -1 : second == o.second ? 0 : 1
-        in new DataInputStream(codec.createInputStream(in))+  } 
-    }+
 +</code>
  
-    public boolean nextKeyValue() throws IOException { +If we would like in a Hadoop job to sort the ''IntPair'' using the first element only, we can provide a ''RawComparator'' and set it using [[http://hadoop.apache.org/common/docs/r1.0.0/api/org/apache/hadoop/mapreduce/Job.html#setSortComparatorClass(java.lang.Class)|job.setSortComparatorClass]]:
-      if (value_read) return false;+
  
-      byte[] data = new byte[length]; 
-      in.readFully(data); 
  
-      key = new Text(file.toString()); 
-      value = new BytesWritable(data); 
-      value_read = true; 
  
-      return true; +====== Grouping comparator ======
-    }+
  
-    public Text getCurrentKey() { return key; } +In a reduce, it is guaranteed that keys are processed in ascending orderSometimes it would be useful if the //values associated with one key// could also be processed in ascending order.
-    public BytesWritable getCurrentValue() { return value; } +
-    public float getProgress() { return value_read ? 0 : 1; } +
-    public synchronized void close() throws IOException { if (in != null) { in.close(); in = null; } } +
-  }+
  
-  // Use the helper class as a RecordReader in out file format. +----
-  public RecordReader<Text, BytesWritable> createRecordReader(InputSplit split, TaskAttemptContext context) { +
-    return new WholeFileRecordReader(); +
-  }+
  
-  // Do not allow splitting+<html> 
-  protected boolean isSplittable(JobContext context, Path filename) { +<table style="width:100%"> 
-    return false+<tr> 
-  } +<td style="text-align:left; width: 33%; "></html>[[step-28|Step 28]]: Custom data types.<html></td> 
-} +<td style="text-align:center; width: 33%; "></html>[[.|Overview]]<html></td> 
- +<td style="text-align:rightwidth: 33%; "></html>[[step-30|Step 30]]: Custom input formats.<html></td> 
-</code>+</tr> 
 +</table> 
 +</html>
  

[ Back to the navigation ] [ Back to the content ]