What would you like to see added?
Users running Nextflow/nf-core workflows may submit a large number of jobs in a short period of time, which can create a high volume of job submission requests to the Slurm controller. For such cases, reducing the submission rate help prevent large bursts of requests and reduce the risk of temporarily overloading the Slurm controller.
We do not currently have a documented limit on the number of job submissions allowed within a given time period for this type of workflow. However, we recommend users avoid submitting large bursts of jobs that may impact scheduler responsiveness.
Proposed Guidance
Recommend users configure Nextflow to limit the job submission rate:
executor {
submitRateLimit = '1/sec'
}
This allows Nextflow to submit a maximum of one job per second (up to 60 job submissions per minute).
What would you like to see added?
Users running Nextflow/nf-core workflows may submit a large number of jobs in a short period of time, which can create a high volume of job submission requests to the Slurm controller. For such cases, reducing the submission rate help prevent large bursts of requests and reduce the risk of temporarily overloading the Slurm controller.
We do not currently have a documented limit on the number of job submissions allowed within a given time period for this type of workflow. However, we recommend users avoid submitting large bursts of jobs that may impact scheduler responsiveness.
Proposed Guidance
Recommend users configure Nextflow to limit the job submission rate:
executor {
submitRateLimit = '1/sec'
}
This allows Nextflow to submit a maximum of one job per second (up to 60 job submissions per minute).