From adbf728ce522a1c69237c8c24457c1d69330a115 Mon Sep 17 00:00:00 2001 From: Matthias De Smet <11850640+matthdsm@users.noreply.github.com> Date: Thu, 13 Oct 2022 07:54:30 +0200 Subject: [PATCH] vsc_ugent: limit queuesize --- conf/vsc_ugent.config | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/conf/vsc_ugent.config b/conf/vsc_ugent.config index 0bc6ffd..b46b347 100644 --- a/conf/vsc_ugent.config +++ b/conf/vsc_ugent.config @@ -7,9 +7,11 @@ workDir = "$scratch_dir/work" // Perform work directory cleanup when the run has succesfully completed // cleanup = true -// Reduce the job submit rate to about 5 per second, this way the server won't be bombarded with jobs +// Reduce the job submit rate to about 3 per second, this way the server won't be bombarded with jobs +// Limit queueSize to keep job rate under control and avoid timeouts executor { submitRateLimit = '3 sec' + queueSize = 50 } // Specify that singularity should be used and where the cache dir will be for the images @@ -114,4 +116,4 @@ profiles { scratch = "$scratch_dir" } } -} \ No newline at end of file +}