public static final class AggregateStep.AggregateMapReduce extends StaticMapReduce<MapReduce.NullObject,Object,MapReduce.NullObject,Object,Collection>
MapReduce.MapEmitter<K,V>, MapReduce.NullObject, MapReduce.ReduceEmitter<OK,OV>, MapReduce.Stage
Modifier and Type | Field and Description |
---|---|
static String |
AGGREGATE_STEP_SIDE_EFFECT_KEY |
MAP_REDUCE
Constructor and Description |
---|
AggregateMapReduce(AggregateStep step) |
Modifier and Type | Method and Description |
---|---|
boolean |
doStage(MapReduce.Stage stage)
A MapReduce job can be map-only, map-reduce-only, or map-combine-reduce.
|
Collection |
generateFinalResult(Iterator<KeyValue<MapReduce.NullObject,Object>> keyValues)
The key/value pairs emitted by reduce() (or map() in a map-only job) can be iterated to generate a local JVM Java object.
|
String |
getMemoryKey()
The results of the MapReduce job are associated with a memory-key to ultimately be stored in
Memory . |
void |
loadState(Graph graph,
Configuration configuration)
When it is necessary to load the state of a MapReduce job, this method is called.
|
void |
map(Vertex vertex,
MapReduce.MapEmitter<MapReduce.NullObject,Object> emitter)
The map() method is logically executed at all vertices in the graph in parallel.
|
void |
storeState(Configuration configuration)
When it is necessary to store the state of a MapReduce job, this method is called.
|
clone, equals, hashCode, toString
finalize, getClass, notify, notifyAll, wait, wait, wait
addResultToMemory, combine, createMapReduce, getMapKeySort, getReduceKeySort, reduce, workerEnd, workerStart
public static final String AGGREGATE_STEP_SIDE_EFFECT_KEY
public AggregateMapReduce(AggregateStep step)
public void storeState(Configuration configuration)
MapReduce
storeState
in interface MapReduce<MapReduce.NullObject,Object,MapReduce.NullObject,Object,Collection>
storeState
in class StaticMapReduce<MapReduce.NullObject,Object,MapReduce.NullObject,Object,Collection>
configuration
- the configuration to store the state of the MapReduce job in.public void loadState(Graph graph, Configuration configuration)
MapReduce
graph
- the graph the MapReduce job will run againstconfiguration
- the configuration to load the state of the MapReduce job from.public boolean doStage(MapReduce.Stage stage)
MapReduce
stage
- the stage to check for definition.public void map(Vertex vertex, MapReduce.MapEmitter<MapReduce.NullObject,Object> emitter)
MapReduce
vertex
- the current vertex being map() processed.emitter
- the component that allows for key/value pairs to be emitted to the next stage.public Collection generateFinalResult(Iterator<KeyValue<MapReduce.NullObject,Object>> keyValues)
MapReduce
keyValues
- the key/value pairs that were emitted from reduce() (or map() in a map-only job)Copyright © 2013–2015 Apache Software Foundation. All rights reserved.