tinkerpop git commit: TINKERPOP-1610 Deprecated Groovy test suites

2017-01-20 Thread spmallette
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1610 [created] 168d5b37e TINKERPOP-1610 Deprecated Groovy test suites Graph Providers no longer need to implement these going forward. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit:

tinkerpop git commit: what I thought was a fix to my cap().cap() bug was not. race condition where the second cap() is pulling data before the first cap() fininshes. Has to do with the order in which

2017-01-20 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1564 f76d5a98e -> 1c4f6f547 what I thought was a fix to my cap().cap() bug was not. race condition where the second cap() is pulling data before the first cap() fininshes. Has to do with the order in which messages are received by

tinkerpop git commit: TINKERPOP-1560 Used ManagedConcurrentValueMap in GremlinGroovyClassLoader

2017-01-20 Thread spmallette
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1560 [created] 061bbc42c TINKERPOP-1560 Used ManagedConcurrentValueMap in GremlinGroovyClassLoader By configuring the ManagedConcurrentValueMap to have weak references, the GremlinGroovyClassLoader, and therefore the

tinkerpop git commit: I was able to get another test case to pass with akka-gremlin/ --- the problem was successive cap('a')s were building up successively larger side-effect values.

2017-01-20 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1564 23e1b7fe8 -> f76d5a98e I was able to get another test case to pass with akka-gremlin/ --- the problem was successive cap('a')s were building up successively larger side-effect values. Project:

[07/13] tinkerpop git commit: moved all the GroupStep work against tp32/

2017-01-20 Thread dkuppitz
moved all the GroupStep work against tp32/ Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/3496402a Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/3496402a Diff:

[08/13] tinkerpop git commit: Merge branch 'TINKERPOP-1248' into tp32

2017-01-20 Thread dkuppitz
Merge branch 'TINKERPOP-1248' into tp32 Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/379a6e5e Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/379a6e5e Diff:

[01/13] tinkerpop git commit: Created OrdertedTraverser which allows us to move beyond the star graph for OrderGlobalStep by()-projections. Moreover, it reduces the complexity of ordering as the objec

2017-01-20 Thread dkuppitz
Repository: tinkerpop Updated Branches: refs/heads/centrality-recipes e97255f20 -> 5577ea564 (forced update) Created OrdertedTraverser which allows us to move beyond the star graph for OrderGlobalStep by()-projections. Moreover, it reduces the complexity of ordering as the objects of

[11/13] tinkerpop git commit: updated CHANGELOG.

2017-01-20 Thread dkuppitz
updated CHANGELOG. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/60022999 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/60022999 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/60022999

[03/13] tinkerpop git commit: Removed a PathProcessor.ID constraint from ComputerVerificationStrategy. Moreover, sampling and ordering is more efficient as the projected data is co-located with the tr

2017-01-20 Thread dkuppitz
Removed a PathProcessor.ID constraint from ComputerVerificationStrategy. Moreover, sampling and ordering is more efficient as the projected data is co-located with the traverser in the new ProjectedTraverser wrapper. Going to leave it at this for tp32/... Moving forward, we can make it so we

[05/13] tinkerpop git commit: added a private no-arg constructor to MultiComparator so it can be serialized.

2017-01-20 Thread dkuppitz
added a private no-arg constructor to MultiComparator so it can be serialized. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/ee1ab08b Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/ee1ab08b Diff:

[04/13] tinkerpop git commit: updated CHANGELOG and tweaked ProjectTraverser variable naming.

2017-01-20 Thread dkuppitz
updated CHANGELOG and tweaked ProjectTraverser variable naming. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/91e1f50c Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/91e1f50c Diff:

[06/13] tinkerpop git commit: Not going to touch GroupStep in this ticket. Too complicated ... will do for the next release. Minor tweaks and cleanups.

2017-01-20 Thread dkuppitz
Not going to touch GroupStep in this ticket. Too complicated ... will do for the next release. Minor tweaks and cleanups. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/973484d1 Tree:

[09/13] tinkerpop git commit: @dkuppitz found an optimization trick for MultiComparator. The startIndex for comparing should start after the last Order.shuffle.

2017-01-20 Thread dkuppitz
@dkuppitz found an optimization trick for MultiComparator. The startIndex for comparing should start after the last Order.shuffle. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/341ebf98 Tree:

[02/13] tinkerpop git commit: We now have ProjectedTraveser which is a Traverser with List of projections. OrderGlobalStep uses this and thus, can order for everything within the local star gr

2017-01-20 Thread dkuppitz
We now have ProjectedTraveser which is a Traverser with List of projections. OrderGlobalStep uses this and thus, can order for everything within the local star graph. Added MultiComparator which is like ChainedComparator but doesn't contain traversal projections -- just comparators. Project:

[12/13] tinkerpop git commit: introduced a minor bug into CollectingBarrierStep that would only be noticed by asynchrnous traversal execution engines. I noticed it in the GraphActors branch. Also, add

2017-01-20 Thread dkuppitz
introduced a minor bug into CollectingBarrierStep that would only be noticed by asynchrnous traversal execution engines. I noticed it in the GraphActors branch. Also, added a toString() to ProjectedTraverser. CTR. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit:

tinkerpop git commit: Updated the closeness and betweeness centrality recipes.

2017-01-20 Thread dkuppitz
Repository: tinkerpop Updated Branches: refs/heads/centrality-recipes [created] e97255f20 Updated the closeness and betweeness centrality recipes. 1) added a disclaimer that both recipes should be used with care (only on small (sub)graphs) 2) optimized the execution plan 3) took multiple

tinkerpop git commit: gremlin-python/ now uses gremlin-tinkergraph-test/ AbstractTinkerGraphProvider for PythonProvider. So much duplicated code has gone down the drain cause of AbstarctTinkerGraphPro

2017-01-20 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1564 fc5d93c01 -> 23e1b7fe8 gremlin-python/ now uses gremlin-tinkergraph-test/ AbstractTinkerGraphProvider for PythonProvider. So much duplicated code has gone down the drain cause of AbstarctTinkerGraphProvider. Classy. Project:

tinkerpop git commit: Created a new gremlin-tools/ packaged called gremlin-tinkergraph-test/ which includes an AbstractTinkerGraphProvider to allow providers to more easily leverage TinkerGraph in the

2017-01-20 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1564 9349612e8 -> fc5d93c01 Created a new gremlin-tools/ packaged called gremlin-tinkergraph-test/ which includes an AbstractTinkerGraphProvider to allow providers to more easily leverage TinkerGraph in their testing. Both