Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
3.0.1-incubating
-
None
Description
This ticket is related to TINKERPOP3-391.
Right now TinkerGraphComputer does this:
TinkerWorkerPool workers = new TinkerWorkerPool(Runtime.getRuntime().availableProcessors())
This needs to be more like this:
TinkerWorkerPool workers = new TinkerWorkerPool(configuration.getInt("gremlin.graphComputer.workerCount",Runtime.getRuntime().availableProcessors())