Uses of Interface
org.apache.hadoop.mapred.OutputFormat
Packages that use OutputFormat
Package
Description
-
Uses of OutputFormat in org.apache.hadoop.mapred
Classes in org.apache.hadoop.mapred that implement OutputFormatModifier and TypeClassDescriptionclassFileOutputFormat<K,V> A base class forOutputFormat.classAnOutputFormatthat writesMapFiles.classAnOutputFormatthat writes keys, values toSequenceFiles in binary(raw) formatclassAnOutputFormatthat writesSequenceFiles.classTextOutputFormat<K,V> AnOutputFormatthat writes plain text files.Methods in org.apache.hadoop.mapred that return OutputFormatModifier and TypeMethodDescriptionJobConf.getOutputFormat()Get theOutputFormatimplementation for the map-reduce job, defaults toTextOutputFormatif not specified explicity.Method parameters in org.apache.hadoop.mapred with type arguments of type OutputFormatModifier and TypeMethodDescriptionvoidJobConf.setOutputFormat(Class<? extends OutputFormat> theClass) Set theOutputFormatimplementation for the map-reduce job. -
Uses of OutputFormat in org.apache.hadoop.mapred.lib
Classes in org.apache.hadoop.mapred.lib that implement OutputFormatModifier and TypeClassDescriptionclassFilterOutputFormat<K,V> FilterOutputFormat is a convenience class that wraps OutputFormat.classLazyOutputFormat<K,V> A Convenience class that creates output lazily.classMultipleOutputFormat<K,V> This abstract class extends the FileOutputFormat, allowing to write the output data to different output files.classThis class extends the MultipleOutputFormat, allowing to write the output data to different output files in sequence file output format.classThis class extends the MultipleOutputFormat, allowing to write the output data to different output files in Text output format.classNullOutputFormat<K,V> Consume all outputs and put them in /dev/null.Fields in org.apache.hadoop.mapred.lib declared as OutputFormatMethods in org.apache.hadoop.mapred.lib that return types with arguments of type OutputFormatModifier and TypeMethodDescriptionstatic Class<? extends OutputFormat>MultipleOutputs.getNamedOutputFormatClass(JobConf conf, String namedOutput) Returns the named output OutputFormat.Method parameters in org.apache.hadoop.mapred.lib with type arguments of type OutputFormatModifier and TypeMethodDescriptionstatic voidMultipleOutputs.addMultiNamedOutput(JobConf conf, String namedOutput, Class<? extends OutputFormat> outputFormatClass, Class<?> keyClass, Class<?> valueClass) Adds a multi named output for the job.static voidMultipleOutputs.addNamedOutput(JobConf conf, String namedOutput, Class<? extends OutputFormat> outputFormatClass, Class<?> keyClass, Class<?> valueClass) Adds a named output for the job.static voidLazyOutputFormat.setOutputFormatClass(JobConf job, Class<? extends OutputFormat> theClass) Set the underlying output format for LazyOutputFormat.Constructors in org.apache.hadoop.mapred.lib with parameters of type OutputFormatModifierConstructorDescriptionFilterOutputFormat(OutputFormat<K, V> out) Create a FilterOutputFormat based on the supplied output format. -
Uses of OutputFormat in org.apache.hadoop.mapred.lib.db
Classes in org.apache.hadoop.mapred.lib.db that implement OutputFormat