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
已提问 3 个月前142 查看次数
1 回答
0
已接受的回答

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
专家
已回答 3 个月前
  • thank you, for your help. it did helped. i'm sorry, didn't pay enough attention for a documentation.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则