summaryrefslogtreecommitdiffstats
path: root/config.toml
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-03-02 08:50:57 +0100
committerMatthias Beyer <matthias.beyer@atos.net>2021-03-02 13:55:35 +0100
commit682cf3f2b4567965cef73f31f1dd7b0ae6ccea28 (patch)
tree38ca7c48ad5450089434653d2c0973f6972174bd /config.toml
parent9cbbff2be1f5938c83c097c6cb1094c8b2bfc49e (diff)
Add comment what the "maxjobs" setting means
Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
Diffstat (limited to 'config.toml')
-rw-r--r--config.toml7
1 files changed, 6 insertions, 1 deletions
diff --git a/config.toml b/config.toml
index 5f504ef..9536234 100644
--- a/config.toml
+++ b/config.toml
@@ -175,7 +175,12 @@ name = "testhostname"
uri = "http://0.0.0.0:8095" # the URI of the endpoint. Either http or socket path
endpoint_type = "http" # either "http" or "socket"
speed = 1 # currently ignored, but required to be present
-maxjobs = 1 # currently ignored, but required to be present
+
+# maximum number of jobs running on this endpoint.
+# Set this to a reasonable high number to be able to run a lot of small jobs.
+# For example, if you're compiling with `make -j 1`, this should at least be the
+# number of CPU cores, maybe a bit more (eg. (ncpu * 1.1))
+maxjobs = 1
#