org.apache.avro.mapred
Class AvroJob

java.lang.Object
  extended by org.apache.avro.mapred.AvroJob

public class AvroJob
extends Object

Setters to configure jobs for Avro data.


Field Summary
static String BINARY_PREFIX
          The configuration key prefix for a binary output metadata.
static String INPUT_SCHEMA
          The configuration key for a job's input schema.
static String MAP_OUTPUT_SCHEMA
          The configuration key for a job's intermediate schema.
static String OUTPUT_SCHEMA
          The configuration key for a job's output schema.
static String TEXT_PREFIX
          The configuration key prefix for a text output metadata.
 
Method Summary
static Schema getInputSchema(Configuration job)
          Return a job's map input schema.
static Schema getMapOutputSchema(Configuration job)
          Return a job's map output key schema.
static Schema getOutputSchema(Configuration job)
          Return a job's output key schema.
static void setCombinerClass(org.apache.hadoop.mapred.JobConf job, Class<? extends AvroReducer> c)
          Configure a job's combiner implementation.
static void setInputSchema(org.apache.hadoop.mapred.JobConf job, Schema s)
          Configure a job's map input schema.
static void setMapOutputSchema(org.apache.hadoop.mapred.JobConf job, Schema s)
          Configure a job's map output schema.
static void setMapperClass(org.apache.hadoop.mapred.JobConf job, Class<? extends AvroMapper> c)
          Configure a job's mapper implementation.
static void setOutputMeta(org.apache.hadoop.mapred.JobConf job, String key, byte[] value)
          Add metadata to job output files.
static void setOutputMeta(org.apache.hadoop.mapred.JobConf job, String key, long value)
          Add metadata to job output files.
static void setOutputMeta(org.apache.hadoop.mapred.JobConf job, String key, String value)
          Add metadata to job output files.
static void setOutputSchema(org.apache.hadoop.mapred.JobConf job, Schema s)
          Configure a job's output schema.
static void setReducerClass(org.apache.hadoop.mapred.JobConf job, Class<? extends AvroReducer> c)
          Configure a job's reducer implementation.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

INPUT_SCHEMA

public static final String INPUT_SCHEMA
The configuration key for a job's input schema.

See Also:
Constant Field Values

MAP_OUTPUT_SCHEMA

public static final String MAP_OUTPUT_SCHEMA
The configuration key for a job's intermediate schema.

See Also:
Constant Field Values

OUTPUT_SCHEMA

public static final String OUTPUT_SCHEMA
The configuration key for a job's output schema.

See Also:
Constant Field Values

TEXT_PREFIX

public static final String TEXT_PREFIX
The configuration key prefix for a text output metadata.

See Also:
Constant Field Values

BINARY_PREFIX

public static final String BINARY_PREFIX
The configuration key prefix for a binary output metadata.

See Also:
Constant Field Values
Method Detail

setInputSchema

public static void setInputSchema(org.apache.hadoop.mapred.JobConf job,
                                  Schema s)
Configure a job's map input schema.


getInputSchema

public static Schema getInputSchema(Configuration job)
Return a job's map input schema.


setMapOutputSchema

public static void setMapOutputSchema(org.apache.hadoop.mapred.JobConf job,
                                      Schema s)
Configure a job's map output schema. The map output schema defaults to the output schema and need only be specified when it differs. Thus must be a Pair schema.


getMapOutputSchema

public static Schema getMapOutputSchema(Configuration job)
Return a job's map output key schema.


setOutputSchema

public static void setOutputSchema(org.apache.hadoop.mapred.JobConf job,
                                   Schema s)
Configure a job's output schema. Unless this is a map-only job, this must be a Pair schema.


setOutputMeta

public static void setOutputMeta(org.apache.hadoop.mapred.JobConf job,
                                 String key,
                                 String value)
Add metadata to job output files.


setOutputMeta

public static void setOutputMeta(org.apache.hadoop.mapred.JobConf job,
                                 String key,
                                 long value)
Add metadata to job output files.


setOutputMeta

public static void setOutputMeta(org.apache.hadoop.mapred.JobConf job,
                                 String key,
                                 byte[] value)
Add metadata to job output files.


getOutputSchema

public static Schema getOutputSchema(Configuration job)
Return a job's output key schema.


setMapperClass

public static void setMapperClass(org.apache.hadoop.mapred.JobConf job,
                                  Class<? extends AvroMapper> c)
Configure a job's mapper implementation.


setCombinerClass

public static void setCombinerClass(org.apache.hadoop.mapred.JobConf job,
                                    Class<? extends AvroReducer> c)
Configure a job's combiner implementation.


setReducerClass

public static void setReducerClass(org.apache.hadoop.mapred.JobConf job,
                                   Class<? extends AvroReducer> c)
Configure a job's reducer implementation.



Copyright © 2010 The Apache Software Foundation