MapReduce.MapEmitter<K,V>, MapReduce.NullObject, MapReduce.ReduceEmitter<OK,OV>, MapReduce.StageMAP_REDUCE| Constructor and Description | 
|---|
| MapReduceBB() | 
| 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. | 
| List<Integer> | generateFinalResult(Iterator<KeyValue<Integer,Integer>> 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<Integer>> | 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 | map(Vertex vertex,
   MapReduce.MapEmitter<Integer,Integer> emitter)The map() method is logically executed at all vertices in the graph in parallel. | 
clone, equals, hashCode, storeState, toStringfinalize, getClass, notify, notifyAll, wait, wait, waitaddResultToMemory, combine, createMapReduce, getReduceKeySort, loadState, reduce, workerEnd, workerStartpublic boolean doStage(MapReduce.Stage stage)
MapReducestage - the stage to check for definition.public void map(Vertex vertex, MapReduce.MapEmitter<Integer,Integer> 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<Integer>> 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 String getMemoryKey()
MapReduceMemory.public List<Integer> generateFinalResult(Iterator<KeyValue<Integer,Integer>> keyValues)
MapReducekeyValues - the key/value pairs that were emitted from reduce() (or map() in a map-only job)Copyright © 2013–2017 Apache Software Foundation. All rights reserved.