Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

GraphJob provides some additional Get/Set methods extending the core BSPJob interface for supporting the Graph specific configurations, such as setMaxIteration, setAggregatorClass, setVertexInputReaderClass, and setVertexOutputWriterClass. Rest APIs e.g., InputFormat, OutputFormat etc. are the same with core BSPJob interface.

...

  • setup() phase: the initialization phase for vertex computations.
  • bsp() phase: the main computations of the vertices. The message communications among vertices are also handled by BSP communication interface in this phase.
  • cleanup phase: output write phase after completing the computations of the vertices.

...