Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 05ED7200BA7 for ; Thu, 15 Sep 2016 12:35:30 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 048C5160AB7; Thu, 15 Sep 2016 10:35:30 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 185CB160AEA for ; Thu, 15 Sep 2016 12:35:27 +0200 (CEST) Received: (qmail 38288 invoked by uid 500); 15 Sep 2016 10:35:27 -0000 Mailing-List: contact commits-help@tinkerpop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tinkerpop.apache.org Delivered-To: mailing list commits@tinkerpop.apache.org Received: (qmail 38202 invoked by uid 99); 15 Sep 2016 10:35:27 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Sep 2016 10:35:27 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 35E02E0A05; Thu, 15 Sep 2016 10:35:27 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dkuppitz@apache.org To: commits@tinkerpop.apache.org Date: Thu, 15 Sep 2016 10:35:46 -0000 Message-Id: <03bdd35c94574e9da4c2268843224a49@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [21/37] tinkerpop git commit: Added a warning message for BLVP. archived-at: Thu, 15 Sep 2016 10:35:30 -0000 Added a 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/285ecbbe Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/285ecbbe Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/285ecbbe Branch: refs/heads/TINKERPOP-1280 Commit: 285ecbbe1bc2c4ac7777cea6987a40e99e108522 Parents: 7fa75fd Author: Daniel Kuppitz Authored: Tue Sep 13 00:10:03 2016 +0200 Committer: Daniel Kuppitz Committed: Tue Sep 13 00:10:03 2016 +0200 ---------------------------------------------------------------------- docs/src/reference/the-graphcomputer.asciidoc | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/285ecbbe/docs/src/reference/the-graphcomputer.asciidoc ---------------------------------------------------------------------- diff --git a/docs/src/reference/the-graphcomputer.asciidoc b/docs/src/reference/the-graphcomputer.asciidoc index 453b62e..9cbef01 100644 --- a/docs/src/reference/the-graphcomputer.asciidoc +++ b/docs/src/reference/the-graphcomputer.asciidoc @@ -383,6 +383,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 ~~~~~~~~~~~~~~~~~~~~~~