[ https://issues.apache.org/jira/browse/TINKERPOP-1305?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15292069#comment-15292069 ]
ASF GitHub Bot commented on TINKERPOP-1305: ------------------------------------------- Github user okram commented on the pull request: https://github.com/apache/incubator-tinkerpop/pull/316#issuecomment-220440890 These are "master traversal" traversers. Even before when it was stored in sideeffects, those are ultimately stored in `Configuration` (`TRAVERSAL`). Its the same scalability as before, just better semantics as we shouldn't store halted traversers as side-effects (they have "left the traversal"). Finally, since the beginning, OLAP reductions to the master traversal are only as scalable as the single machine it comes back to. Thus, groups(), limits(), groupCounts(), sums(), etc. are important. There is no `g.V()` on a billion vertex graph and stream back results. > HALTED_TRAVERSERS hold wrong information > ---------------------------------------- > > Key: TINKERPOP-1305 > URL: https://issues.apache.org/jira/browse/TINKERPOP-1305 > Project: TinkerPop > Issue Type: Bug > Affects Versions: 3.2.0-incubating > Reporter: Daniel Kuppitz > Assignee: Marko A. Rodriguez > > {noformat} > gremlin> g.V().in("knows") > ==>v[1] > ==>v[1] > gremlin> > g.V().in("knows").store("x").program(BulkDumperVertexProgram.build().create(graph)) > ==>v[1] > ==>v[1] > gremlin> hdfs.head("output/~g", GryoInputFormat).each {println "" + it.id() + > " :: " + it.property(TraversalVertexProgram.HALTED_TRAVERSERS)} > 4 :: vp[gremlin.traversalVertexProgram.haltedTraversers->[v[5], v[3]]] > 1 :: vp[gremlin.traversalVertexProgram.haltedTraversers->[v[3], v[2], v[4]]] > 6 :: vp[gremlin.traversalVertexProgram.haltedTraversers->[v[3]]] > 3 :: vp[empty] > 5 :: vp[empty] > 2 :: vp[empty] > {noformat} > Vertex 4 and 6 shouldn't have halted traversers, since they only have > incoming {{created}} edges. Vertex 1 on the other hand should only hold a > reference to {{v\[2\]}} and {{v\[4\]}}. -- This message was sent by Atlassian JIRA (v6.3.4#6332)