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 0F4D7200B95 for ; Tue, 13 Sep 2016 00:11:14 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0D97E160AC8; Mon, 12 Sep 2016 22:11:14 +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 54D11160AB8 for ; Tue, 13 Sep 2016 00:11:13 +0200 (CEST) Received: (qmail 18783 invoked by uid 500); 12 Sep 2016 22:11:12 -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 18764 invoked by uid 99); 12 Sep 2016 22:11:12 -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; Mon, 12 Sep 2016 22:11:12 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 70B17E089E; Mon, 12 Sep 2016 22:11:12 +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 Message-Id: <0f7de182412e49bc9dfd01f43f4c03d5@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: tinkerpop git commit: Added a warning message for BLVP. Date: Mon, 12 Sep 2016 22:11:12 +0000 (UTC) archived-at: Mon, 12 Sep 2016 22:11:14 -0000 Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1264 [created] 285ecbbe1 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-1264 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 ~~~~~~~~~~~~~~~~~~~~~~