maxNumberOfThreads property usage #21
-
Just would like to confirm that the property maxNumberOfThreads is used only for parallel execution scenarios? Or does it also determine how many max number of flowret cases can run at a given moment? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The maxNumberOfThreads is only used for parallel execution. The number specified here will be used across all parallel executions. For example, if there are 15 concurrent executions of parallel processing, then those 15 will share the number of threads specified in this property. In this sense, it is a pool of threads that are shared for all parallel executions. No, there is no limit to the number of Flowret cases that can be run at any given moment. It will depend on the JVM CPU and memory and in case of parallel processing on the value of this parameter. Hope this clarifies. |
Beta Was this translation helpful? Give feedback.
The maxNumberOfThreads is only used for parallel execution. The number specified here will be used across all parallel executions. For example, if there are 15 concurrent executions of parallel processing, then those 15 will share the number of threads specified in this property. In this sense, it is a pool of threads that are shared for all parallel executions. No, there is no limit to the number of Flowret cases that can be run at any given moment. It will depend on the JVM CPU and memory and in case of parallel processing on the value of this parameter. Hope this clarifies.