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
Hi, when using funnel to submit jobs to AWS batch the error
This value was submitted in a deprecated key and may conflict with the value provided by the job definition's resource requirements.
comes up for the CPU and memory requirements.
Per AWS documentation at https://docs.aws.amazon.com/batch/latest/userguide/troubleshooting.html#override-resource-requirements
the call to containerOverrides should be following the new structure
containerOverrides
containerOverrides": { "resourceRequirements": [ { "type": "MEMORY", "value": "8192" }, { "type": "VCPU", "value": "4" } ], }
Would it be possible to update funnel to comply with the latest API calls to AWS? Thanks in advance for your help
The text was updated successfully, but these errors were encountered:
lbeckman314
No branches or pull requests
Hi,
when using funnel to submit jobs to AWS batch the error
comes up for the CPU and memory requirements.
Per AWS documentation at https://docs.aws.amazon.com/batch/latest/userguide/troubleshooting.html#override-resource-requirements
the call to
containerOverrides
should be following the new structureWould it be possible to update funnel to comply with the latest API calls to AWS?
Thanks in advance for your help
The text was updated successfully, but these errors were encountered: