
Ultimate access to all questions.
A data engineer has been using a Databricks SQL dashboard to monitor the cleanliness of the input data to an ELT job. The ELT job has its Databricks SQL query that returns the number of input records containing unexpected NULL values. The data engineer wants their entire team to be notified via a messaging webhook whenever this value reaches 100.
Which approach can the data engineer use to notify their entire team via a messaging webhook whenever the number of NULL values reaches 100?
A
They can set up an Alert with a custom template.
B
They can set up an Alert with a new email alert destination.
C
They can set up an Alert with a new webhook alert destination.
D
They can set up an Alert with one-time notifications.
Explanation:
In Databricks SQL, alerts can be configured to notify users when query results meet certain conditions. The scenario describes:
Let's analyze each option:
A. They can set up an Alert with a custom template.
B. They can set up an Alert with a new email alert destination.
C. They can set up an Alert with a new webhook alert destination. ✅ CORRECT
D. They can set up an Alert with one-time notifications.
The correct approach is to create a webhook alert destination configured with the team's messaging webhook URL, then set up an alert on the query with the condition that triggers when the NULL count reaches 100.