Cloudwatch Alarm for Glue Job Failures

0

Hi all, is there any direct way to set up cloudwatch alarms to alert you when a glue job fails? Without using the lambda function. For example, using a direct metric such as glue.driver.aggregate.numFailedTasks

Thanks!

sg03
已提問 5 個月前檢視次數 740 次
2 個答案
0
已接受的答案

Do you have any idea if the glue.error.ALL observability group metric would work on CloudWatch alarms instead of the glue.driver.aggregate.numFailedTasks?

==>> Yes, replicated at my end with the below CloudWatch alarm configurations and its working as expected.:

Statistic : SUM

Period : 60

MetricName: glue.error.ALL

TreatMissingData :notBreaching

ComparisonOperator : GreaterThanOrEqualToThreshold

Threshold: 1

Note: So for every 1 minute if there is a data point breaching the threshold you will be getting an alert for the same.

Reference:

[1] Using Amazon CloudWatch alarms - https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html

[2] Create a CPU usage alarm - Setting up a CPU usage alarm using the AWS Management Console - https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/US_AlarmAtThresholdEC2.html#cpu-usage-alarm-console

AWS
支援工程師
已回答 5 個月前
profile picture
專家
已審閱 2 個月前
  • Thanks! I checked the same as well and it is working as expected in sending me an email for a glue job failure.

0
  • If you want to notification on a Glue Job Failure, then you can use AWS Event Bridge, no Lambda Required.

  • Create an Event Bridge Rules like below pattern for a job failure and set the Target to be SNS Topic.

  • Subscript the SNS Topic to get a notification.

  • Sample Event Rule pattern to monitor a Glue job failure: { "detail-type": ["Glue Job State Change"], "source": ["aws.glue"], "detail": { "jobName": ["<Glue job Name>"], "state": ["FAILED"] } }

  • Check the below Article for the same: https://repost.aws/knowledge-center/glue-sns-notification-state

  • Also, using glue.driver.aggregate.numFailedTasks metrics for job notification would NOT be the correct Glue job status. As this metrics is related to Spark task, which sometime fails and succeed when spark retries. So the Glue job will succeed even with failed Spark task.

AWS
已回答 5 個月前
profile picture
專家
已審閱 5 個月前
  • got it. thanks so much I will have to test this out on monday as i dont have the permissions required to create a rule on eventbridge. Do you have any idea if the glue.error.ALL observability group metric would work on cloudwatch alarms instead of the glue.driver.aggregate.numFailedTasks?

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南