mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-21 16:16:04 +00:00
Merge pull request #428 from nf-core/vsc_ugent/limit_queuesize
vsc_ugent: limit queuesize
This commit is contained in:
commit
9a1e629b7b
1 changed files with 4 additions and 2 deletions
|
@ -7,9 +7,11 @@ workDir = "$scratch_dir/work"
|
||||||
// Perform work directory cleanup when the run has succesfully completed
|
// Perform work directory cleanup when the run has succesfully completed
|
||||||
// cleanup = true
|
// 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 {
|
executor {
|
||||||
submitRateLimit = '3 sec'
|
submitRateLimit = '3 sec'
|
||||||
|
queueSize = 50
|
||||||
}
|
}
|
||||||
|
|
||||||
// Specify that singularity should be used and where the cache dir will be for the images
|
// Specify that singularity should be used and where the cache dir will be for the images
|
||||||
|
@ -114,4 +116,4 @@ profiles {
|
||||||
scratch = "$scratch_dir"
|
scratch = "$scratch_dir"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue