- Newest
- Most votes
- Most comments
This error is returned when you have submitted the same exact input file with the same settings 10 times within 30 seconds.
Furthermore, to explicitly opt-out of duplicate job detection, include the user metadata DisableDuplicateJobRejection in your job settings as shown below:
{
"UserMetadata": {
"DisableDuplicateJobRejection": "{ANY_VALUE}"
},
"Settings": {
...
}
}
By adding any string will automatically disable duplicate job rejection. For example:
"DisableDuplicateJobRejection": "false" or "DisableDuplicateJobRejection": "true" or "DisableDuplicateJobRejection": "notarealword"
I'm getting same error;
Input and destination are different but the file is the same (same checksum). In lambda funcion that calls mediaconvert I added to my settings json the following properties:
params.Settings.Inputs[0].FileInput = fileInput;
params.Settings.OutputGroups[0].OutputGroupSettings.FileGroupSettings.Destination = `s3://id.${ENVIRONMENT}.${COUNTRY}.video/${srcKeyDirectory}/`;
params.UserMetadata.multimediaid = s3ObjectMetadata.multimediaid;
In my settings json I added this:
"UserMetadata": {
"DisableDuplicateJobRejection": "yes",
"application": "VideoProcessor"
}
But I still obtain "You submitted a duplicate job that has identical settings as the job 'x' you submitted previously. To help prevent unnecessary charges, MediaConvert did not create your duplicate job. To resolve: Edit any of your job settings. Then resubmit your job"
Any ideas? Thx in advance
