Package | Description |
---|---|
org.apache.hadoop.examples |
Hadoop example code.
|
org.apache.hadoop.mapreduce | |
org.apache.hadoop.mapreduce.lib.db |
org.apache.hadoop.mapred.lib.db Package
|
org.apache.hadoop.mapreduce.lib.input | |
org.apache.hadoop.mapreduce.lib.map | |
org.apache.hadoop.mapreduce.lib.partition | |
org.apache.hadoop.mapreduce.lib.reduce | |
org.apache.hadoop.mapreduce.task |
Modifier and Type | Class and Description |
---|---|
static class |
MultiFileWordCount.MyInputFormat
To use
CombineFileInputFormat , one should extend it, to return a
(custom) RecordReader . |
Modifier and Type | Method and Description |
---|---|
java.lang.Class<? extends InputFormat<?,?>> |
JobContext.getInputFormatClass()
Get the
InputFormat class for the job. |
Modifier and Type | Method and Description |
---|---|
void |
Job.setInputFormatClass(java.lang.Class<? extends InputFormat> cls)
Set the
InputFormat for the job. |
Modifier and Type | Class and Description |
---|---|
class |
DataDrivenDBInputFormat<T extends DBWritable>
A InputFormat that reads input data from an SQL table.
|
class |
DBInputFormat<T extends DBWritable>
A InputFormat that reads input data from an SQL table.
|
class |
OracleDataDrivenDBInputFormat<T extends DBWritable>
A InputFormat that reads input data from an SQL table in an Oracle db.
|
Modifier and Type | Class and Description |
---|---|
class |
CombineFileInputFormat<K,V>
|
class |
DelegatingInputFormat<K,V>
An
InputFormat that delegates behavior of paths to multiple other
InputFormats. |
class |
FileInputFormat<K,V>
A base class for file-based
InputFormat s. |
class |
KeyValueTextInputFormat
An
InputFormat for plain text files. |
class |
NLineInputFormat
NLineInputFormat which splits N lines of input as one split.
|
class |
SequenceFileAsBinaryInputFormat
InputFormat reading keys, values from SequenceFiles in binary (raw)
format.
|
class |
SequenceFileAsTextInputFormat
This class is similar to SequenceFileInputFormat, except it generates
SequenceFileAsTextRecordReader which converts the input keys and values
to their String forms by calling toString() method.
|
class |
SequenceFileInputFilter<K,V>
A class that allows a map/red job to work on a sample of sequence files.
|
class |
SequenceFileInputFormat<K,V>
An
InputFormat for SequenceFile s. |
class |
TextInputFormat
An
InputFormat for plain text files. |
Modifier and Type | Method and Description |
---|---|
static void |
MultipleInputs.addInputPath(Job job,
org.apache.hadoop.fs.Path path,
java.lang.Class<? extends InputFormat> inputFormatClass)
Add a
Path with a custom InputFormat to the list of
inputs for the map-reduce job. |
static void |
MultipleInputs.addInputPath(Job job,
org.apache.hadoop.fs.Path path,
java.lang.Class<? extends InputFormat> inputFormatClass,
java.lang.Class<? extends Mapper> mapperClass)
|
Modifier and Type | Method and Description |
---|---|
java.lang.Class<? extends InputFormat<?,?>> |
WrappedMapper.Context.getInputFormatClass() |
Modifier and Type | Method and Description |
---|---|
K[] |
InputSampler.Sampler.getSample(InputFormat<K,V> inf,
Job job)
For a given job, collect and return a subset of the keys from the
input data.
|
K[] |
InputSampler.SplitSampler.getSample(InputFormat<K,V> inf,
Job job)
From each split sampled, take the first numSamples / numSplits records.
|
K[] |
InputSampler.RandomSampler.getSample(InputFormat<K,V> inf,
Job job)
Randomize the split order, then take the specified number of keys from
each split sampled, where each key is selected with the specified
probability and possibly replaced by a subsequently selected key when
the quota of keys from that split is satisfied.
|
K[] |
InputSampler.IntervalSampler.getSample(InputFormat<K,V> inf,
Job job)
For each split sampled, emit when the ratio of the number of records
retained to the total record count is less than the specified
frequency.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Class<? extends InputFormat<?,?>> |
WrappedReducer.Context.getInputFormatClass() |
Modifier and Type | Method and Description |
---|---|
java.lang.Class<? extends InputFormat<?,?>> |
JobContextImpl.getInputFormatClass()
Get the
InputFormat class for the job. |
Copyright © 2009 The Apache Software Foundation