[jira] [Closed] (TINKERPOP-1814) Some process tests require the graph API

2017-11-09 Thread Marko A. Rodriguez (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1814?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marko A. Rodriguez closed TINKERPOP-1814. - Resolution: Fixed Fix Version/s: 3.3.1 3.2.7 > Some

[jira] [Commented] (TINKERPOP-1814) Some process tests require the graph API

2017-11-09 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1814?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16246117#comment-16246117 ] ASF GitHub Bot commented on TINKERPOP-1814: --- Github user asfgit closed the pull request at:

[jira] [Created] (TINKERPOP-1829) Improve flexibility of detachment for EventStrategy

2017-11-09 Thread stephen mallette (JIRA)
stephen mallette created TINKERPOP-1829: --- Summary: Improve flexibility of detachment for EventStrategy Key: TINKERPOP-1829 URL: https://issues.apache.org/jira/browse/TINKERPOP-1829 Project:

[GitHub] tinkerpop pull request #740: TINKERPOP-1814: Some process tests require the ...

2017-11-09 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/tinkerpop/pull/740 ---

[jira] [Commented] (TINKERPOP-1807) Gremlin-Python doesn't support GraphSON types g:Date, g:Timestamp and g:UUID

2017-11-09 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1807?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16246510#comment-16246510 ] ASF GitHub Bot commented on TINKERPOP-1807: --- Github user spmallette commented on the issue:

[GitHub] tinkerpop pull request #745: TINKERPOP-1830: fix race condition in TinkerInd...

2017-11-09 Thread mpollmeier
GitHub user mpollmeier opened a pull request: https://github.com/apache/tinkerpop/pull/745 TINKERPOP-1830: fix race condition in TinkerIndex My colleage @fabsx00 discovered a race condition in tinkergraph's index creation. He fixed it by simply replacing `parallelStream` with

[jira] [Created] (TINKERPOP-1830) Race condition in Tinkergraph index creation

2017-11-09 Thread Michael Pollmeier (JIRA)
Michael Pollmeier created TINKERPOP-1830: Summary: Race condition in Tinkergraph index creation Key: TINKERPOP-1830 URL: https://issues.apache.org/jira/browse/TINKERPOP-1830 Project:

[jira] [Commented] (TINKERPOP-1830) Race condition in Tinkergraph index creation

2017-11-09 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1830?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16246860#comment-16246860 ] ASF GitHub Bot commented on TINKERPOP-1830: --- GitHub user mpollmeier opened a pull request:

[jira] [Commented] (TINKERPOP-1830) Race condition in Tinkergraph index creation

2017-11-09 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1830?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16247033#comment-16247033 ] ASF GitHub Bot commented on TINKERPOP-1830: --- Github user mpollmeier commented on the issue:

[GitHub] tinkerpop issue #745: TINKERPOP-1830: fix race condition in TinkerIndex

2017-11-09 Thread robertdale
Github user robertdale commented on the issue: https://github.com/apache/tinkerpop/pull/745 The race condition is in `put()` and it's used elsewhere. It would make more sense to fix `put()` to be thread-safe. Then we can keep `parallelStream()` ``` Map

[jira] [Commented] (TINKERPOP-1830) Race condition in Tinkergraph index creation

2017-11-09 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1830?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16246988#comment-16246988 ] ASF GitHub Bot commented on TINKERPOP-1830: --- Github user robertdale commented on the issue:

[GitHub] tinkerpop issue #745: TINKERPOP-1830: fix race condition in TinkerIndex

2017-11-09 Thread mpollmeier
Github user mpollmeier commented on the issue: https://github.com/apache/tinkerpop/pull/745 Agreed, that's a better solution @robertdale. Note that `putIfAbsent` is not generally thread safe, but since we use `ConcurrentHashMap` it should be. I'll amend the commit. ---