You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2015/06/08 22:00:17 UTC

[2/2] incubator-tinkerpop git commit: removed unneeded OLAP warnings for various steps in the-traversal as now ComputerVerificationStrategy will explain to the user that the step is not possible in certain situations.

removed unneeded OLAP warnings for various steps in the-traversal as now ComputerVerificationStrategy will explain to the user that the step is not possible in certain situations.


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

Branch: refs/heads/master
Commit: 13f12dbfb22cef185fa808b064d515185a2bf051
Parents: e17070a
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Mon Jun 8 13:05:56 2015 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Mon Jun 8 14:00:05 2015 -0600

----------------------------------------------------------------------
 docs/src/the-traversal.asciidoc | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/13f12dbf/docs/src/the-traversal.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/the-traversal.asciidoc b/docs/src/the-traversal.asciidoc
index ca573a9..5eaf3f4 100644
--- a/docs/src/the-traversal.asciidoc
+++ b/docs/src/the-traversal.asciidoc
@@ -411,8 +411,6 @@ g.V().valueMap(true, 'name')
 g.V().dedup().by(label).values('name')
 ----
 
-WARNING: The `dedup()`-step does not have a correlate in <<traversalvertexprogram,Gremlin OLAP>> when used mid-traversal. When in mid-traversal de-duplication only occurs at the the current processing vertex and thus, is not a global operation as it in Gremlin OLTP. When `dedup()` is an end step, the resultant traversers are de-duplicated by `TraverserMapReduce`.
-
 [[drop-step]]
 Drop Step
 ~~~~~~~~~
@@ -476,8 +474,6 @@ The three projection parameters available to `group()` via `by()` are:
 . Value-projection: What feature of the group to store in the key-list?
 . Reduce-projection: What feature of the key-list to ultimately return?
 
-WARNING: The `group()`-step does not have a correlate in <<traversalvertexprogram,Gremlin OLAP>> when used mid-traversal. When in mid-traversal grouping only occurs at the the current processing vertex and thus, is not a global operation as it in Gremlin OLTP. However, `GroupMapReduce` provides unified groups at the end of the traversal computation.
-
 [[groupcount-step]]
 GroupCount Step
 ~~~~~~~~~~~~~~~
@@ -507,8 +503,6 @@ g.V().repeat(both().groupCount('m').by(label)).times(10).cap('m')
 
 The above is interesting in that it demonstrates the use of referencing the internal `Map<Object,Long>` of `groupCount()` with a string variable. Given that `groupCount()` is a sideEffect-step, it simply passes the object it received to its output. Internal to `groupCount()`, the object's count is incremented.
 
-WARNING: The `groupCount()`-step does not have a correlate in <<traversalvertexprogram,Gremlin OLAP>> when used mid-traversal. When in mid-traversal grouping only occurs at the the current processing vertex and thus, is not a global operation as it in Gremlin OLTP. However, `GroupCountMapReduce` provides unified groups at the end of the traversal computation.
-
 [[has-step]]
 Has Step
 ~~~~~~~~