Open
Description
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": {
"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