summaryrefslogtreecommitdiffstats
path: root/container-core/src/main/resources/configdefinitions/container.handler.threadpool.container-threadpool.def
diff options
context:
space:
mode:
Diffstat (limited to 'container-core/src/main/resources/configdefinitions/container.handler.threadpool.container-threadpool.def')
-rw-r--r--container-core/src/main/resources/configdefinitions/container.handler.threadpool.container-threadpool.def3
1 files changed, 3 insertions, 0 deletions
diff --git a/container-core/src/main/resources/configdefinitions/container.handler.threadpool.container-threadpool.def b/container-core/src/main/resources/configdefinitions/container.handler.threadpool.container-threadpool.def
index 9248bf2e2bf..4ba14c2da89 100644
--- a/container-core/src/main/resources/configdefinitions/container.handler.threadpool.container-threadpool.def
+++ b/container-core/src/main/resources/configdefinitions/container.handler.threadpool.container-threadpool.def
@@ -4,16 +4,19 @@ namespace=container.handler.threadpool
## Maximum number of thread in the thread pool
## 0 is translated to vcpu*4
+## Negative value is interpreted as scale factor ( vcpu*abs(maxThreads) )
maxThreads int default=0
## Minimum number of thread in the thread pool
## 0 is translated to vcpu*2
+## Negative value is interpreted as scale factor ( vcpu*abs(minThreads) )
minThreads int default=0
## The number of seconds that excess idle threads will wait for new tasks before terminating
keepAliveTime double default=5.0
## Max queue size
+## Negative value is interpreted as scale factor ( effectiveMaxThreads*abs(queueSize) )
queueSize int default=0
## The max time the container tolerates having no threads available before it shuts down to