Modifier and Type | Class and Description |
---|---|
class |
MapOnlyMapper<I,O>
Map function for Map only jobs.
|
class |
Mapper<I,K,V>
Map function for MapReduce computations.
|
class |
Reducer<K,V,O>
Reduce function for use in MapReduce.
|
Modifier and Type | Method and Description |
---|---|
protected abstract Worker<C> |
WorkerShardTask.getWorker() |
protected Worker<ReducerContext<O>> |
ReduceShardTask.getWorker() |
protected Worker<MapperContext<K,V>> |
MapShardTask.getWorker() |
protected Worker<MapOnlyMapperContext<O>> |
MapOnlyShardTask.getWorker() |
Modifier and Type | Class and Description |
---|---|
class |
SortWorker
Sorts a set of keyValues by a lexicographical comparison of the bytes of the key.
|
Modifier and Type | Method and Description |
---|---|
protected Worker<MergeContext> |
MergeShardTask.getWorker() |
protected Worker<SortContext> |
SortShardTask.getWorker() |
Modifier and Type | Class and Description |
---|---|
class |
IdentityMapper<K,V>
A mapper that passes an incoming KeyValue to it's output.
|
class |
KeyProjectionMapper<T>
A pass through mapper that passes the input to the output key.
|
Modifier and Type | Class and Description |
---|---|
class |
IdentityReducer<K,V>
A passthrough reducer that passes it's input to it's output.
|
class |
KeyProjectionReducer<K,V>
Reducer that emits the keys that occur in its input, discarding the values.
|
class |
NoReducer<K,V,O>
Deprecated.
Consider using
MapJob instead. |
class |
ValueProjectionReducer<K,V>
Reducer that emits the values that occur in its input, discarding the keys.
|
Copyright © 2015 Google. All rights reserved.