mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
Added config for limiting queue size and job submit rate
This commit is contained in:
parent
55971bb94d
commit
adc88cfa1f
1 changed files with 19 additions and 5 deletions
|
@ -11,15 +11,20 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
params {
|
// nf-core specific parameters displayed in header summary of each run
|
||||||
|
|
||||||
// nf-core specific parameters displayed in header summary of each run
|
params {
|
||||||
|
|
||||||
config_profile_description = 'Sheffield Bioinformatics Core - ShARC'
|
config_profile_description = 'Sheffield Bioinformatics Core - ShARC'
|
||||||
config_profile_contact = 'Lewis Quayle (l.quayle@sheffield.ac.uk)'
|
config_profile_contact = 'Lewis Quayle (l.quayle@sheffield.ac.uk)'
|
||||||
config_profile_url = 'https://docs.hpc.shef.ac.uk/en/latest/sharc/index.html'
|
config_profile_url = 'https://docs.hpc.shef.ac.uk/en/latest/sharc/index.html'
|
||||||
|
|
||||||
// hpc resource limits
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// hpc resource limits
|
||||||
|
|
||||||
|
params {
|
||||||
|
|
||||||
max_cpus = 16
|
max_cpus = 16
|
||||||
max_memory = 64.GB
|
max_memory = 64.GB
|
||||||
|
@ -42,6 +47,16 @@ process {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// optional executor settings
|
||||||
|
|
||||||
|
executor {
|
||||||
|
|
||||||
|
queueSize = 10
|
||||||
|
submitRateLimit = '1 sec'
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// container engine
|
// container engine
|
||||||
|
|
||||||
singularity {
|
singularity {
|
||||||
|
@ -50,4 +65,3 @@ singularity {
|
||||||
autoMounts = true
|
autoMounts = true
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue