summaryrefslogtreecommitdiffstats
path: root/container-core
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-05-29 11:18:32 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-05-29 11:18:32 +0000
commit8980eb5685d6057b8a85db36cfc1ad0744935e60 (patch)
treecd26f32eaaff5911d9ee851c5d3e22d9663c4260 /container-core
parent6480495811959e4ea110f25e6371811f5d01f23d (diff)
GC unused slow start config.
Diffstat (limited to 'container-core')
-rw-r--r--container-core/abi-spec.json4
-rw-r--r--container-core/src/main/resources/configdefinitions/threadpool.def5
2 files changed, 1 insertions, 8 deletions
diff --git a/container-core/abi-spec.json b/container-core/abi-spec.json
index 82d34d88b99..b4720bd725d 100644
--- a/container-core/abi-spec.json
+++ b/container-core/abi-spec.json
@@ -173,7 +173,6 @@
"public com.yahoo.container.handler.ThreadpoolConfig$Builder maxthreads(int)",
"public com.yahoo.container.handler.ThreadpoolConfig$Builder queueSize(int)",
"public com.yahoo.container.handler.ThreadpoolConfig$Builder maxThreadExecutionTimeSeconds(int)",
- "public com.yahoo.container.handler.ThreadpoolConfig$Builder softStartSeconds(double)",
"public final boolean dispatchGetConfig(com.yahoo.config.ConfigInstance$Producer)",
"public final java.lang.String getDefMd5()",
"public final java.lang.String getDefName()",
@@ -212,8 +211,7 @@
"public void <init>(com.yahoo.container.handler.ThreadpoolConfig$Builder)",
"public int maxthreads()",
"public int queueSize()",
- "public int maxThreadExecutionTimeSeconds()",
- "public double softStartSeconds()"
+ "public int maxThreadExecutionTimeSeconds()"
],
"fields": [
"public static final java.lang.String CONFIG_DEF_MD5",
diff --git a/container-core/src/main/resources/configdefinitions/threadpool.def b/container-core/src/main/resources/configdefinitions/threadpool.def
index abc60f9f06d..81e77c51194 100644
--- a/container-core/src/main/resources/configdefinitions/threadpool.def
+++ b/container-core/src/main/resources/configdefinitions/threadpool.def
@@ -16,8 +16,3 @@ queueSize int default=0
# get out of a bad state. This should be set a bit higher than the expected max execution
# time of each request when in a state of overload, i.e about "worst case execution time*2"
maxThreadExecutionTimeSeconds int default=190
-
-# Length of period for soft start
-# During this period number of availble threads will be gradually increased.
-# Currently used to avoid feeding overload in container during cold start.
-softStartSeconds double default=0