I'm looking for help on CloudFormation Template for Glue Jobs orchestration for below scenario:
Suppose I have 6 AWS Glue Jobs, 3 jobs (Job1, Job2, Job3) should be executed parallel and remaining 3 jobs should be executed sequentially (Job3 executed before Job4 then Job4 executed before Job5, then Job5 executed before Job6). If any job failure, send Workflow "Failure" notification along with the failed Glue Jobname.
Job1
Job2
job3 --->job4--->job5-->job6
You can define a StepFunctions using
AWS::StepFunctions::StateMachine
resource and define additionallyAWS::Events::Rule
for following events:Here is a sample single job execution stage in step functions:
You will have to enclose three parallel jobs within
Parallel
task type.