[ 
https://issues.apache.org/jira/browse/TINKERPOP-1293?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15279304#comment-15279304
 ] 

ASF GitHub Bot commented on TINKERPOP-1293:
-------------------------------------------

Github user okram commented on the pull request:

    
https://github.com/apache/incubator-tinkerpop/pull/310#issuecomment-218332211
  
    ```
    [INFO] 
------------------------------------------------------------------------
    [INFO] Reactor Summary:
    [INFO]
    [INFO] Apache TinkerPop .................................. SUCCESS [5.532s]
    [INFO] Apache TinkerPop :: Gremlin Shaded ................ SUCCESS [2.355s]
    [INFO] Apache TinkerPop :: Gremlin Core .................. SUCCESS [44.087s]
    [INFO] Apache TinkerPop :: Gremlin Test .................. SUCCESS [11.803s]
    [INFO] Apache TinkerPop :: Gremlin Groovy ................ SUCCESS [40.912s]
    [INFO] Apache TinkerPop :: Gremlin Groovy Test ........... SUCCESS [7.801s]
    [INFO] Apache TinkerPop :: TinkerGraph Gremlin ........... SUCCESS 
[3:29.140s]
    [INFO] Apache TinkerPop :: Gremlin Benchmark ............. SUCCESS [6.440s]
    [INFO] Apache TinkerPop :: Hadoop Gremlin ................ SUCCESS 
[11:07.210s]
    [INFO] Apache TinkerPop :: Spark Gremlin ................. SUCCESS 
[6:18.138s]
    [INFO] Apache TinkerPop :: Giraph Gremlin ................ SUCCESS 
[2:43:57.096s]
    [INFO] Apache TinkerPop :: Neo4j Gremlin ................. SUCCESS 
[1:09:07.962s]
    [INFO] Apache TinkerPop :: Gremlin Driver ................ SUCCESS [12.497s]
    [INFO] Apache TinkerPop :: Gremlin Server ................ SUCCESS 
[13:22.778s]
    [INFO] Apache TinkerPop :: Gremlin Console ............... SUCCESS 
[1:26.498s]
    [INFO] Apache TinkerPop :: Gremlin Archetype ............. SUCCESS [0.161s]
    [INFO] Apache TinkerPop :: Archetype - TinkerGraph ....... SUCCESS [5.221s]
    [INFO] Apache TinkerPop :: Archetype - Server ............ SUCCESS [10.874s]
    [INFO] 
------------------------------------------------------------------------
    [INFO] BUILD SUCCESS
    [INFO] 
------------------------------------------------------------------------
    [INFO] Total time: 4:31:17.006s
    [INFO] Finished at: Tue May 10 17:55:05 MDT 2016
    [INFO] Final Memory: 105M/796M
    [INFO] 
------------------------------------------------------------------------
    ```


> Implement GraphFilterStrategy as a default registration for GraphComputer
> -------------------------------------------------------------------------
>
>                 Key: TINKERPOP-1293
>                 URL: https://issues.apache.org/jira/browse/TINKERPOP-1293
>             Project: TinkerPop
>          Issue Type: Improvement
>          Components: process
>    Affects Versions: 3.2.0-incubating
>            Reporter: Marko A. Rodriguez
>            Assignee: Marko A. Rodriguez
>             Fix For: 3.2.1
>
>
> {{GraphFilterStrategy}} would be a {{TraversalStrategy}} for 
> {{GraphComputers}}. It will inspect the {{Traversal}} and decide the 
> {{computer.vertices(...).edges(...)}} to use.
> Some rules:
> 1. If the traversal is part of an OLAP chain, don't apply strategy.
> 2. If the traversal is persist edges, then don't {{edges(...)}} or 
> {{vertices(...)}}.
> 3. If the traversal is persist vertex properties, then don't do 
> {{vertices(...)}}.
> Shouldn't be too difficult. Basically looking for:
> 1. {{VertexStep}} labels for edges.
> 2. {{HasStep}} containers for vertices and edges.
> From there, we can get fancy with {{outE().has("stars",gt(4))}}-style 
> {{edges(...)}}. However, basic element-label based filtering should be easy.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to