We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
I have workflows which need staggered submissions to reduce the likelihood of throttling errors. This feature would resolve such issues.
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
The text was updated successfully, but these errors were encountered:
If it's a new feature then it's likely only available in AWS SDK v2, which we haven't upgraded to yet. We plan to do that this year.
In the meantime, we do have some retry-with-backoff logic to handle rate limit errors. Is that not working for you?
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: