[jira] [Created] (TINKERPOP-2081) PersistedOutputRDD materialises rdd lazily with Spark 2.x

2018-10-26 Thread Artem Aliev (JIRA)
Artem Aliev created TINKERPOP-2081: -- Summary: PersistedOutputRDD materialises rdd lazily with Spark 2.x Key: TINKERPOP-2081 URL: https://issues.apache.org/jira/browse/TINKERPOP-2081 Project

[GitHub] tinkerpop issue #789: TINKERPOP-1870 Made VertexTraverserSet more generic to...

2018-01-24 Thread artem-aliev
Github user artem-aliev commented on the issue: https://github.com/apache/tinkerpop/pull/789 +1 I reran my small perf test and get the same result with this new structure, but it looks more solid and inline with other code. ---

[GitHub] tinkerpop issue #781: Tinkerpop 1870 master

2018-01-19 Thread artem-aliev
Github user artem-aliev commented on the issue: https://github.com/apache/tinkerpop/pull/781 rebased ---

[GitHub] tinkerpop issue #778: TINKERPOP-1870: Extends TraverserSet to have Vertex in...

2018-01-19 Thread artem-aliev
Github user artem-aliev commented on the issue: https://github.com/apache/tinkerpop/pull/778 rebased ---

[GitHub] tinkerpop issue #780: improve performace by not handling excepptions

2018-01-19 Thread artem-aliev
Github user artem-aliev commented on the issue: https://github.com/apache/tinkerpop/pull/780 retargeted/rebase to latest tp32 ---

[GitHub] tinkerpop pull request #778: TINKERPOP-1870: Extends TraverserSet to have Ve...

2018-01-17 Thread artem-aliev
Github user artem-aliev commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/778#discussion_r162065650 --- Diff: gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/gryo/GryoVersion.java --- @@ -305,6 +307,7 @@ public String

[GitHub] tinkerpop pull request #781: Tinkerpop 1870 master

2018-01-17 Thread artem-aliev
GitHub user artem-aliev opened a pull request: https://github.com/apache/tinkerpop/pull/781 Tinkerpop 1870 master You can merge this pull request into a Git repository by running: $ git pull https://github.com/artem-aliev/tinkerpop TINKERPOP-1870-master Alternatively you can

[GitHub] tinkerpop pull request #780: improve performace by not handling excepptions

2018-01-16 Thread artem-aliev
GitHub user artem-aliev opened a pull request: https://github.com/apache/tinkerpop/pull/780 improve performace by not handling excepptions You can merge this pull request into a Git repository by running: $ git pull https://github.com/artem-aliev/tinkerpop TINKERPOP-1871

[jira] [Created] (TINKERPOP-1871) Exception handling is slow in element ReferenceElement creation

2018-01-16 Thread Artem Aliev (JIRA)
Artem Aliev created TINKERPOP-1871: -- Summary: Exception handling is slow in element ReferenceElement creation Key: TINKERPOP-1871 URL: https://issues.apache.org/jira/browse/TINKERPOP-1871 Project

[jira] [Updated] (TINKERPOP-1870) n^2 synchronious operation in OLAP WorkerExecutor.execute() method

2018-01-16 Thread Artem Aliev (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1870?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Artem Aliev updated TINKERPOP-1870: --- Affects Version/s: 3.2.7 3.3.1 > n^2 synchronious operat

[jira] [Commented] (TINKERPOP-1870) n^2 synchronious operation in OLAP WorkerExecutor.execute() method

2018-01-16 Thread Artem Aliev (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1870?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16326941#comment-16326941 ] Artem Aliev commented on TINKERPOP-1870: I wrapped the block into findVertexTraverser() method

[jira] [Updated] (TINKERPOP-1870) n^2 synchronious operation in OLAP WorkerExecutor.execute() method

2018-01-16 Thread Artem Aliev (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1870?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Artem Aliev updated TINKERPOP-1870: --- Attachment: findTraverserFixed.png findTraverser2.png

[jira] [Commented] (TINKERPOP-1870) n^2 synchronious operation in OLAP WorkerExecutor.execute() method

2018-01-15 Thread Artem Aliev (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1870?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16326356#comment-16326356 ] Artem Aliev commented on TINKERPOP-1870: The fix I provided could be simplified

[GitHub] tinkerpop pull request #778: TINKERPOP-1870: Extends TraverserSet to have Ve...

2018-01-15 Thread artem-aliev
GitHub user artem-aliev opened a pull request: https://github.com/apache/tinkerpop/pull/778 TINKERPOP-1870: Extends TraverserSet to have Vertex index for remote … …traversers That replaces linear search in reversal traversal interator with hashtable lookup. You can

[jira] [Created] (TINKERPOP-1870) n^2 synchronious operation in OLAP WorkerExecutor.execute() method

2018-01-15 Thread Artem Aliev (JIRA)
Artem Aliev created TINKERPOP-1870: -- Summary: n^2 synchronious operation in OLAP WorkerExecutor.execute() method Key: TINKERPOP-1870 URL: https://issues.apache.org/jira/browse/TINKERPOP-1870 Project

[GitHub] tinkerpop issue #734: TINKERPOP-1801: fix profile() timing in OLAP by adding...

2017-10-24 Thread artem-aliev
Github user artem-aliev commented on the issue: https://github.com/apache/tinkerpop/pull/734 Something strange happened, during rebases. I'll fix. ---

[GitHub] tinkerpop issue #734: TINKERPOP-1801: fix profile() timing in OLAP by adding...

2017-10-20 Thread artem-aliev
Github user artem-aliev commented on the issue: https://github.com/apache/tinkerpop/pull/734 The fix add iteration time to the appropriate step. Iteration time is a time between workerIterationStart() and workerIterationEnd() callbacks. So before fix the timing looks like

[GitHub] tinkerpop issue #733: TINKERPOP-1801: fix profile() timing in OLAP by adding...

2017-10-17 Thread artem-aliev
Github user artem-aliev commented on the issue: https://github.com/apache/tinkerpop/pull/733 See #734 ---

[GitHub] tinkerpop pull request #733: TINKERPOP-1801: fix profile() timing in OLAP by...

2017-10-17 Thread artem-aliev
Github user artem-aliev closed the pull request at: https://github.com/apache/tinkerpop/pull/733 ---

[GitHub] tinkerpop issue #733: TINKERPOP-1801: fix profile() timing in OLAP by adding...

2017-10-17 Thread artem-aliev
Github user artem-aliev commented on the issue: https://github.com/apache/tinkerpop/pull/733 that should be against tp32 branch ---

[GitHub] tinkerpop pull request #734: TINKERPOP-1801: fix profile() timing in OLAP by...

2017-10-17 Thread artem-aliev
GitHub user artem-aliev opened a pull request: https://github.com/apache/tinkerpop/pull/734 TINKERPOP-1801: fix profile() timing in OLAP by adding worker iterati… …on timings to step metrics this is a simple fix that do not change any API You can merge this pull

[jira] [Commented] (TINKERPOP-1801) OLAP profile() step return incorrect timing

2017-10-17 Thread Artem Aliev (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1801?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16208065#comment-16208065 ] Artem Aliev commented on TINKERPOP-1801: That is simple way to fix it, without new API. Let's

[GitHub] tinkerpop pull request #733: TINKERPOP-1801: fix profile() timing in OLAP by...

2017-10-17 Thread artem-aliev
GitHub user artem-aliev opened a pull request: https://github.com/apache/tinkerpop/pull/733 TINKERPOP-1801: fix profile() timing in OLAP by adding worker iterati… …on timings to step metrics this is a simple fix that do not change any API You can merge this pull

[jira] [Created] (TINKERPOP-1801) OLAP profile() step return incorrect timing

2017-10-17 Thread Artem Aliev (JIRA)
Artem Aliev created TINKERPOP-1801: -- Summary: OLAP profile() step return incorrect timing Key: TINKERPOP-1801 URL: https://issues.apache.org/jira/browse/TINKERPOP-1801 Project: TinkerPop

[jira] [Commented] (TINKERPOP-1783) PageRank gives incorrect results for graphs with sinks

2017-09-15 Thread Artem Aliev (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1783?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16167499#comment-16167499 ] Artem Aliev commented on TINKERPOP-1783: The work around I proposed is incorrect. The correct

[jira] [Created] (TINKERPOP-1783) PageRank gives incorrect results for graphs with sinks

2017-09-14 Thread Artem Aliev (JIRA)
Artem Aliev created TINKERPOP-1783: -- Summary: PageRank gives incorrect results for graphs with sinks Key: TINKERPOP-1783 URL: https://issues.apache.org/jira/browse/TINKERPOP-1783 Project: TinkerPop

[GitHub] tinkerpop pull request #696: TINKERPOP-1754: Do not add non deserialisable e...

2017-08-18 Thread artem-aliev
GitHub user artem-aliev opened a pull request: https://github.com/apache/tinkerpop/pull/696 TINKERPOP-1754: Do not add non deserialisable exception to ScriptReco… …rdReader IOExceptions You can merge this pull request into a Git repository by running: $ git pull https

[jira] [Created] (TINKERPOP-1754) Spark can not deserialise some ScriptRecordReader parse exceptions

2017-08-18 Thread Artem Aliev (JIRA)
Artem Aliev created TINKERPOP-1754: -- Summary: Spark can not deserialise some ScriptRecordReader parse exceptions Key: TINKERPOP-1754 URL: https://issues.apache.org/jira/browse/TINKERPOP-1754 Project

[GitHub] tinkerpop pull request #678: TINKERPOP-1715: update spark version to 2.2

2017-07-17 Thread artem-aliev
Github user artem-aliev commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/678#discussion_r127710343 --- Diff: gremlin-groovy/pom.xml --- @@ -93,6 +93,10 @@ limitations under the License. ${project.version} test

[GitHub] tinkerpop pull request #678: TINKERPOP-1715: update spark version to 2.2

2017-07-17 Thread artem-aliev
GitHub user artem-aliev opened a pull request: https://github.com/apache/tinkerpop/pull/678 TINKERPOP-1715: update spark version to 2.2 That required: - more spark conflicting dependency exclusion in pom.xml - more spark and scala classes registration in tinkerPop gryo

[jira] [Commented] (TINKERPOP-1271) SparkContext should be restarted if Killed and using Persistent Context

2017-02-03 Thread Artem Aliev (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1271?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15851300#comment-15851300 ] Artem Aliev commented on TINKERPOP-1271: mvn clean install -DskipIntegrationTests=false passed

[jira] [Commented] (TINKERPOP-1271) SparkContext should be restarted if Killed and using Persistent Context

2017-02-02 Thread Artem Aliev (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1271?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15850209#comment-15850209 ] Artem Aliev commented on TINKERPOP-1271: "mvn install" tests passed I have test i

[GitHub] tinkerpop pull request #555: TINKERPOP-1271: Refactor SparkContext creation ...

2017-02-02 Thread artem-aliev
GitHub user artem-aliev opened a pull request: https://github.com/apache/tinkerpop/pull/555 TINKERPOP-1271: Refactor SparkContext creation and handling of sc.stop() org.apache.tinkerpop.gremlin.spark.structure.Spark is a SparkContext holder for SparkGraphComputer

[jira] [Commented] (TINKERPOP-1271) SparkContext should be restarted if Killed and using Persistent Context

2017-01-25 Thread Artem Aliev (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1271?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15837700#comment-15837700 ] Artem Aliev commented on TINKERPOP-1271: I have filed a spark bug for it SPARK-19362