You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2015/11/25 20:05:38 UTC

incubator-tinkerpop git commit: Added a bulk loader image to docs for blvp.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master a81cc66e1 -> 7b66a6aca


Added a bulk loader image to docs for blvp.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/7b66a6ac
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/7b66a6ac
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/7b66a6ac

Branch: refs/heads/master
Commit: 7b66a6acaf6deaea66833edd42c9c92debaa0b12
Parents: a81cc66
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Wed Nov 25 14:05:14 2015 -0500
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Wed Nov 25 14:05:14 2015 -0500

----------------------------------------------------------------------
 docs/src/reference/the-graphcomputer.asciidoc | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/7b66a6ac/docs/src/reference/the-graphcomputer.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/reference/the-graphcomputer.asciidoc b/docs/src/reference/the-graphcomputer.asciidoc
index af65f07..a1a6c74 100644
--- a/docs/src/reference/the-graphcomputer.asciidoc
+++ b/docs/src/reference/the-graphcomputer.asciidoc
@@ -125,7 +125,7 @@ contains original and computed vertex properties. This reduces the amount of dat
 that MapReduce is used for post-processing computed results. All edge-based computing should be accomplished in the
 `VertexProgram`.
 
-image::mapreduce.png[width=650]
+image:mapreduce.png[width=650]
 
 The `MapReduce` extension to GraphComputer is made explicit when examining the
 <<peerpressurevertexprogram,`PeerPressureVertexProgram`>> and corresponding `ClusterPopulationMapReduce`.
@@ -304,7 +304,6 @@ g = result.graph().traversal(standard())
 g.V().valueMap('name',PageRankVertexProgram.PAGE_RANK)
 ----
 
-
 [[peerpressurevertexprogram]]
 PeerPressureVertexProgram
 ~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -324,10 +323,12 @@ same cluster. The algorithm proceeds in the following manner.
 BulkLoaderVertexProgram
 ~~~~~~~~~~~~~~~~~~~~~~~
 
-The `BulkLoaderVertexProgram` provides a generalized way for loading graphs of any size (preferably large sized graphs)
-into a persistent `Graph`. The input can be any existing `Graph` database supporting TinkerPop3 or any of the Hadoop
-GraphInputFormats (e.g. `GraphSONInputFormat`, `GryoInputFormat` or `ScriptInputFormat`). The following example
-demonstrates how to load data from one TinkerGraph to another:
+image:batch-graph.png[width=220,float=left] The `BulkLoaderVertexProgram` provides a generalized way for loading
+graphs of any size into a persistent `Graph`. It is especially useful for large graphs (i.e. hundreds of millions
+or billions of edges) as it can take advantage of the parallel processing offered by `GraphComputer` instances. The
+input can be any existing `Graph` database supporting TinkerPop3 or any of the Hadoop GraphInputFormats (e.g.
+`GraphSONInputFormat`, `GryoInputFormat` or `ScriptInputFormat`). The following example demonstrates how to load data
+from one TinkerGraph to another:
 
 [gremlin-groovy]
 ----