You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tinkerpop.apache.org by "stephen mallette (Jira)" <ji...@apache.org> on 2019/09/05 16:51:00 UTC

[jira] [Updated] (TINKERPOP-2128) Allow explain() to work in a remote fashion

     [ https://issues.apache.org/jira/browse/TINKERPOP-2128?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

stephen mallette updated TINKERPOP-2128:
----------------------------------------
    Component/s:     (was: python)
                 process
    Description: 
{{g.V().explain()}} doesn´t really work in any scenario where the traversal is being executed remotely. the {{explain()}} applies locally in java so you really just get this:

{code}
gremlin> g = traversal().withRemote('conf/remote-graph.properties')
==>graphtraversalsource[emptygraph[empty], standard]
gremlin> g.V().out().explain()
==>Traversal Explanation
============================================================================================
Original Traversal   [GraphStep(vertex,[]), VertexStep(OUT,vertex)]

RemoteStrategy [D]   [RemoteStep(DriverServerConnection-localhost/127.0.0.1:8182 [graph=g])]

Final Traversal      [RemoteStep(DriverServerConnection-localhost/127.0.0.1:8182 [graph=g])]
{code}


  was:g.V().explain() doesn´t exist in Python

        Summary: Allow explain() to work in a remote fashion  (was: Add traversal explain() step to python )

> Allow explain() to work in a remote fashion
> -------------------------------------------
>
>                 Key: TINKERPOP-2128
>                 URL: https://issues.apache.org/jira/browse/TINKERPOP-2128
>             Project: TinkerPop
>          Issue Type: Improvement
>          Components: process
>    Affects Versions: 3.4.0
>            Reporter: Alan Boudreault
>            Priority: Major
>
> {{g.V().explain()}} doesn´t really work in any scenario where the traversal is being executed remotely. the {{explain()}} applies locally in java so you really just get this:
> {code}
> gremlin> g = traversal().withRemote('conf/remote-graph.properties')
> ==>graphtraversalsource[emptygraph[empty], standard]
> gremlin> g.V().out().explain()
> ==>Traversal Explanation
> ============================================================================================
> Original Traversal   [GraphStep(vertex,[]), VertexStep(OUT,vertex)]
> RemoteStrategy [D]   [RemoteStep(DriverServerConnection-localhost/127.0.0.1:8182 [graph=g])]
> Final Traversal      [RemoteStep(DriverServerConnection-localhost/127.0.0.1:8182 [graph=g])]
> {code}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)