-
Notifications
You must be signed in to change notification settings - Fork 749
Open
Description
New Feature
AWS has introduced a new feature for AWS Batch, called "Consumable Resources". It would be great if Nextflow's AWS executor could support this. You may see additional details in the AWS blog post How to use rate-limited resources in AWS Batch jobs with resource-aware scheduling.
Use Case
I have workflows which need staggered submissions to reduce the likelihood of throttling errors. This feature would resolve such issues.
Suggested Implementation
Specify ConsumableResourceProperties within the process directive. This could be added to the SubmitJobRequest in
nextflow/plugins/nf-amazon/src/main/nextflow/cloud/aws/batch/AwsBatchTaskHandler.groovy
Line 713 in 7d3cb2b
| protected SubmitJobRequest newSubmitRequest(TaskRun task) { |
radusuciu