AWS Glue "Glue Job Run Status" never fires

0

Good day. I'm trying to catch aws glue events using EventBridge. For this i use samples from https://repost.aws/knowledge-center/glue-sns-notification-state . EvetBridge template: { "detail-type": ["Glue Job State Change", "Glue Job Run Status"], "source": ["aws.glue"], "detail": { "state": ["FAILED", "SUCCEEDED", "TIMEOUT", "STOPPED", "RUNNING", "STARTING", "STOPPING"] } } And "Glue Job State Change" event works properly, but "Glue Job Run Status" doesn't work at all. I have tried with different glue environment (python shell, spark) it didn't changed anything. I have changed EventBridge template to: { "source": ["aws.glue"] } It didn't helped also. Seems like "Glue Job Run Status" disabled and not working.

dmitrii
asked 3 months ago124 views
1 Answer
0
Accepted Answer

Notice the comment for that kind of event in the documentation: https://docs.aws.amazon.com/glue/latest/dg/automating-awsglue-with-cloudwatch-events.html
You must set the job delay notification threshold property to receive these events.
The notification threshold is in the job details.

profile pictureAWS
EXPERT
answered 3 months ago
  • thank you, for your help. it did helped. i'm sorry, didn't pay enough attention for a documentation.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions