You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by dk...@apache.org on 2016/09/12 23:54:33 UTC

tinkerpop git commit: Added warning message for BLVP.

Repository: tinkerpop
Updated Branches:
  refs/heads/master 0e4e8a1b2 -> 2492a3a3c


Added warning message for BLVP.


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

Branch: refs/heads/master
Commit: 2492a3a3ce70062f2e82658f0af446f94149d84f
Parents: 0e4e8a1
Author: Daniel Kuppitz <da...@hotmail.com>
Authored: Tue Sep 13 01:53:35 2016 +0200
Committer: Daniel Kuppitz <da...@hotmail.com>
Committed: Tue Sep 13 01:53:35 2016 +0200

----------------------------------------------------------------------
 docs/src/reference/the-graphcomputer.asciidoc | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2492a3a3/docs/src/reference/the-graphcomputer.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/reference/the-graphcomputer.asciidoc b/docs/src/reference/the-graphcomputer.asciidoc
index 9b54aa8..8deccee 100644
--- a/docs/src/reference/the-graphcomputer.asciidoc
+++ b/docs/src/reference/the-graphcomputer.asciidoc
@@ -436,6 +436,11 @@ NOTE: A custom `BulkLoader` implementation for incremental loading should use `G
 elements (e.g. `g.addV()` instead of `graph.addVertex()`). This way the `BulkLoaderVertexProgram` is able to efficiently
 track changes in the underlying graph and can apply several optimization techniques.
 
+WARNING: Edges in the input graph must be present in both directions, e.g. from the source vertex to the target vertex
+as an out-edge and from the target vertex to the source vertex as an in-edge. This is especially important if the input
+graph is a `HadoopGraph`. `BulkLoaderVertexProgram` will likely fail with a `FastNoSuchElementException` if one of the
+edges is missing.
+
 [[traversalvertexprogram]]
 TraversalVertexProgram
 ~~~~~~~~~~~~~~~~~~~~~~