public final class TraverserMapReduce extends StaticMapReduce<Comparable,Traverser<?>,Comparable,Traverser<?>,Iterator<Traverser<?>>>
MapReduce.MapEmitter<K,V>, MapReduce.NullObject, MapReduce.ReduceEmitter<OK,OV>, MapReduce.Stage| Modifier and Type | Field and Description | 
|---|---|
| static String | TRAVERSERS | 
MAP_REDUCE| Constructor and Description | 
|---|
| TraverserMapReduce(Traversal.Admin<?,?> traversal) | 
| Modifier and Type | Method and Description | 
|---|---|
| void | combine(Comparable comparable,
       Iterator<Traverser<?>> values,
       MapReduce.ReduceEmitter<Comparable,Traverser<?>> emitter)The combine() method is logically executed at all "machines" in parallel. | 
| boolean | doStage(MapReduce.Stage stage)A MapReduce job can be map-only, map-reduce-only, or map-combine-reduce. | 
| Iterator<Traverser<?>> | generateFinalResult(Iterator<KeyValue<Comparable,Traverser<?>>> 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. | 
| Optional<Comparator<Comparable>> | getMapKeySort()If a  Comparatoris provided, then all pairs leaving theMapReduce.MapEmitterare sorted. | 
| 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<Comparable,Traverser<?>> emitter)The map() method is logically executed at all vertices in the graph in parallel. | 
| void | reduce(Comparable comparable,
      Iterator<Traverser<?>> values,
      MapReduce.ReduceEmitter<Comparable,Traverser<?>> emitter)The reduce() method is logically on the "machine" the respective key hashes to. | 
clone, equals, hashCode, storeState, toStringfinalize, getClass, notify, notifyAll, wait, wait, waitaddResultToMemory, createMapReduce, getReduceKeySort, workerEnd, workerStartpublic static final String TRAVERSERS
public TraverserMapReduce(Traversal.Admin<?,?> traversal)
public void loadState(Graph graph, Configuration configuration)
MapReducegraph - 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)
MapReducestage - the stage to check for definition.public void map(Vertex vertex, MapReduce.MapEmitter<Comparable,Traverser<?>> emitter)
MapReducevertex - the current vertex being map() processed.emitter - the component that allows for key/value pairs to be emitted to the next stage.public Optional<Comparator<Comparable>> getMapKeySort()
MapReduceComparator is provided, then all pairs leaving the MapReduce.MapEmitter are sorted.
 The sorted results are either fed sorted to the combine/reduce-stage or as the final output.
 If sorting is not required, then Optional.empty() should be returned as sorting is computationally expensive.
 The default implementation returns Optional.empty().Optional of a comparator for sorting the map output.public void combine(Comparable comparable, Iterator<Traverser<?>> values, MapReduce.ReduceEmitter<Comparable,Traverser<?>> emitter)
MapReducecomparable - the key that has aggregated valuesvalues - the aggregated values associated with the keyemitter - the component that allows for key/value pairs to be emitted to the reduce stage.public void reduce(Comparable comparable, Iterator<Traverser<?>> values, MapReduce.ReduceEmitter<Comparable,Traverser<?>> emitter)
MapReducecomparable - the key that has aggregated valuesvalues - the aggregated values associated with the keyemitter - the component that allows for key/value pairs to be emitted as the final result.public Iterator<Traverser<?>> generateFinalResult(Iterator<KeyValue<Comparable,Traverser<?>>> keyValues)
MapReducekeyValues - 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.