public class PageRankVertexProgram extends StaticVertexProgram<Double>
Modifier and Type | Class and Description |
---|---|
static class |
PageRankVertexProgram.Builder |
VertexProgram.Features
Modifier and Type | Field and Description |
---|---|
static String |
EDGE_COUNT |
static String |
PAGE_RANK |
VERTEX_PROGRAM
Modifier and Type | Method and Description |
---|---|
static PageRankVertexProgram.Builder |
build() |
void |
execute(Vertex vertex,
Messenger<Double> messenger,
Memory memory)
This method denotes the main body of the computation and is executed on each vertex in the graph.
|
Set<String> |
getElementComputeKeys()
The
Element properties that will be mutated during the computation. |
VertexProgram.Features |
getFeatures() |
Optional<MessageCombiner<Double>> |
getMessageCombiner()
Combine the messages in route to a particular vertex.
|
Set<MessageScope> |
getMessageScopes(Memory memory)
This method returns all the
MessageScope possibilities for a particular iteration of the vertex program. |
GraphComputer.Persist |
getPreferredPersist() |
GraphComputer.ResultGraph |
getPreferredResultGraph() |
void |
loadState(Graph graph,
Configuration configuration)
When it is necessary to load the state of the VertexProgram, this method is called.
|
void |
setup(Memory memory)
The method is called at the beginning of the computation.
|
void |
storeState(Configuration configuration)
When it is necessary to store the state of the VertexProgram, this method is called.
|
boolean |
terminate(Memory memory)
The method is called at the end of each iteration to determine if the computation is complete.
|
String |
toString() |
clone
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
createVertexProgram, getMapReducers, getMemoryComputeKeys, workerIterationEnd, workerIterationStart
public static final String PAGE_RANK
public static final String EDGE_COUNT
public void loadState(Graph graph, Configuration configuration)
VertexProgram
graph
- the graph that the VertexProgram will run againstconfiguration
- the configuration to load the state of the VertexProgram from.public void storeState(Configuration configuration)
VertexProgram
storeState
in interface VertexProgram<Double>
storeState
in class StaticVertexProgram<Double>
configuration
- the configuration to store the state of the VertexProgram in.public GraphComputer.ResultGraph getPreferredResultGraph()
public GraphComputer.Persist getPreferredPersist()
public Set<String> getElementComputeKeys()
VertexProgram
Element
properties that will be mutated during the computation.
All properties in the graph are readable, but only the keys specified here are writable.
The default is an empty set.public Optional<MessageCombiner<Double>> getMessageCombiner()
VertexProgram
public Set<MessageScope> getMessageScopes(Memory memory)
VertexProgram
MessageScope
possibilities for a particular iteration of the vertex program.
The returned messages scopes are the scopes that will be used to send messages during the stated iteration.
It is not a requirement that all stated messages scopes be used, just that it is possible that they be used during the iteration.memory
- an immutable form of the Memory
public void setup(Memory memory)
VertexProgram
GraphComputer
and as such, is not called for each vertex.
During this stage, the Memory
should be initialized to to its "start state."memory
- The global memory of the GraphComputerpublic void execute(Vertex vertex, Messenger<Double> messenger, Memory memory)
VertexProgram
Memory
is read, it is according to the aggregated state yielded in the previous iteration.
When the Memory
is written, the data will be aggregated at the end of the iteration for reading in the next iteration.vertex
- the Vertex
to execute the VertexProgram
onmessenger
- the messenger that moves data between verticesmemory
- the shared state between all vertices in the computationpublic boolean terminate(Memory memory)
VertexProgram
GraphComputer
and as such, is not called for each Vertex
.
The Memory
maintains the aggregated data from the last execute() iteration.memory
- The global memory of the GraphComputer
public static PageRankVertexProgram.Builder build()
public VertexProgram.Features getFeatures()
Copyright © 2013–2015 Apache Software Foundation. All rights reserved.