MLS-C01 Data Engineering • Set 19
MLS-C01 Data Engineering Practice Test 19 — 15 questions with explanations. Free, no signup.
The Glue job my-glue-job fails after a few successful runs. The error log shows 'Job run exceeds max concurrent runs limit'. The CloudFormation template is shown in the exhibit. What change should be made to allow multiple runs to execute concurrently?
Refer to the exhibit.
CloudFormation template snippet:
Resources:
MyGlueJob:
Type: AWS::Glue::Job
Properties:
Command:
Name: glueetl
ScriptLocation: s3://my-bucket/scripts/etl.py
PythonVersion: "3"
DefaultArguments:
--TempDir: s3://my-bucket/temp/
--job-bookmark-option: job-bookmark-enable
ExecutionProperty:
MaxConcurrentRuns: 1
MaxRetries: 0
Name: my-glue-job
Role: arn:aws:iam::123456789012:role/GlueServiceRole