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 2016/05/16 13:27:52 UTC

[6/6] incubator-tinkerpop git commit: merged TINKERPOP-1281

merged TINKERPOP-1281


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

Branch: refs/heads/master
Commit: d056218c7529d471e09323835ed426c79e2842cc
Parents: 423285e 01058f4
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Mon May 16 07:27:51 2016 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Mon May 16 07:27:51 2016 -0600

----------------------------------------------------------------------
 CHANGELOG.asciidoc                              |   3 +
 docs/src/reference/the-traversal.asciidoc       |  80 +++++++
 .../computer/traversal/MasterExecutor.java      | 158 +++++++++++++
 .../traversal/MemoryTraversalSideEffects.java   |  60 ++++-
 .../traversal/TraversalVertexProgram.java       | 151 +++----------
 .../traversal/step/VertexComputing.java         |  22 ++
 .../step/map/PageRankVertexProgramStep.java     |   5 -
 .../step/map/PeerPressureVertexProgramStep.java |   5 -
 .../step/map/ProgramVertexProgramStep.java      |   8 +-
 .../traversal/step/map/VertexProgramStep.java   |  32 ++-
 .../decoration/VertexProgramStrategy.java       |   3 +-
 .../util/DefaultTraversalSideEffects.java       |   1 +
 .../traversal/step/map/GroovyProgramTest.groovy |   5 +
 .../process/traversal/step/map/ProgramTest.java | 221 +++++++++++++++++++
 .../SparkStarBarrierInterceptor.java            |  10 +-
 15 files changed, 613 insertions(+), 151 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/d056218c/CHANGELOG.asciidoc
----------------------------------------------------------------------
diff --cc CHANGELOG.asciidoc
index b514392,31ae001..8fd7a74
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@@ -26,8 -26,6 +26,11 @@@ image::https://raw.githubusercontent.co
  TinkerPop 3.2.1 (NOT OFFICIALLY RELEASED YET)
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  
++* Fixed a bug in master-traversal traverser propagation.
++* Added useful methods for custom `VertexPrograms` to be used with `program()`-step.
++* Increased the test coverage around traverser propagation within a multi-job OLAP traversal.
 +* Added tests to validate the status of a transaction immediately following calls to close.
 +* Added tests to ensure that threaded transactions cannot be re-used.
  * `GraphFilter` helper methods are now more intelligent when determining edge direction/label legality.
  * Added `GraphFilterStrategy` to automatically construct `GraphFilters` via traversal introspection in OLAP.
  * Increased the testing and scope of `TraversalHelper.isLocalStarGraph()`.