You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tinkerpop.apache.org by "Marko A. Rodriguez (JIRA)" <ji...@apache.org> on 2015/09/02 19:05:46 UTC

[jira] [Created] (TINKERPOP3-829) TinkerGraphComputer should support the user specified thread/worker count.

Marko A. Rodriguez created TINKERPOP3-829:
---------------------------------------------

             Summary: TinkerGraphComputer should support the user specified thread/worker count.
                 Key: TINKERPOP3-829
                 URL: https://issues.apache.org/jira/browse/TINKERPOP3-829
             Project: TinkerPop 3
          Issue Type: Improvement
          Components: process, tinkergraph
    Affects Versions: 3.0.1-incubating
            Reporter: Marko A. Rodriguez
            Assignee: Marko A. Rodriguez


This ticket is related to TINKERPOP3-391.

Right now {{TinkerGraphComputer}} does this:

{code}
TinkerWorkerPool workers = new TinkerWorkerPool(Runtime.getRuntime().availableProcessors())
{code}

This needs to be more like this:

{code}
TinkerWorkerPool workers = new TinkerWorkerPool(configuration.getInt("gremlin.graphComputer.workerCount",Runtime.getRuntime().availableProcessors())
{code}



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