org.apache.avro.mapreduce
Class AvroKeyValueOutputFormat<K,V>

java.lang.Object
  extended by org.apache.hadoop.mapreduce.OutputFormat<K,V>
      extended by org.apache.hadoop.mapreduce.lib.output.FileOutputFormat<K,V>
          extended by org.apache.avro.mapreduce.AvroOutputFormatBase<K,V>
              extended by org.apache.avro.mapreduce.AvroKeyValueOutputFormat<K,V>
Type Parameters:
K - The type of key. If an Avro type, it must be wrapped in an AvroKey.
V - The type of value. If an Avro type, it must be wrapped in an AvroValue.

public class AvroKeyValueOutputFormat<K,V>
extends AvroOutputFormatBase<K,V>

FileOutputFormat for writing Avro container files of key/value pairs.

Since Avro container files can only contain records (not key/value pairs), this output format puts the key and value into an Avro generic record with two fields, named 'key' and 'value'.

The keys and values given to this output format may be Avro objects wrapped in AvroKey or AvroValue objects. The basic Writable types are also supported (e.g., IntWritable, Text); they will be converted to their corresponding Avro types.


Nested Class Summary
 
Nested classes/interfaces inherited from class org.apache.hadoop.mapreduce.lib.output.FileOutputFormat
org.apache.hadoop.mapreduce.lib.output.FileOutputFormat.Counter
 
Constructor Summary
AvroKeyValueOutputFormat()
           
 
Method Summary
 org.apache.hadoop.mapreduce.RecordWriter<K,V> getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext context)
          
 
Methods inherited from class org.apache.avro.mapreduce.AvroOutputFormatBase
getAvroFileOutputStream, getCompressionCodec
 
Methods inherited from class org.apache.hadoop.mapreduce.lib.output.FileOutputFormat
checkOutputSpecs, getCompressOutput, getDefaultWorkFile, getOutputCommitter, getOutputCompressorClass, getOutputPath, getPathForWorkFile, getUniqueFile, getWorkOutputPath, setCompressOutput, setOutputCompressorClass, setOutputPath
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AvroKeyValueOutputFormat

public AvroKeyValueOutputFormat()
Method Detail

getRecordWriter

public org.apache.hadoop.mapreduce.RecordWriter<K,V> getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext context)
                                                              throws IOException

Specified by:
getRecordWriter in class org.apache.hadoop.mapreduce.lib.output.FileOutputFormat<K,V>
Throws:
IOException


Copyright © 2009-2013 The Apache Software Foundation. All Rights Reserved.