Model notifications beta
Set up dbt to notify the appropriate model owners through email about issues as soon as they occur, while the job is still running. Model owners can specify which statuses to receive notifications about:
Success
andFails
for modelsWarning
,Success
, andFails
for tests
With model-level notifications, model owners can be the first ones to know about issues before anyone else (like the stakeholders).
This feature is currently available in beta to a limited group of users and is gradually being rolled out. If you're in the beta, please contact the Support team at support@getdbt.com for assistance or questions.
To be timely and keep the number of notifications to a reasonable amount when multiple models or tests trigger them, dbt observes the following guidelines when notifying the owners:
- Send a notification to each unique owner/email during a job run about any models (with status of failure/success) or tests (with status of warning/failure/success). Each owner receives only one notification, the initial one.
- Don't send any notifications about subsequent models or tests while a dbt job is still running.
- At the end of a job run, each owner receives a notification, for each of the statuses they specified to be notified about, with a list of models and tests that have that status.
Create configuration YAML files in your project for dbt to send notifications about the status of your models and tests.
Prerequisites
- Your dbt Cloud administrator has enabled the appropriate account setting for you.
- Your environment(s) must be on "Versionless".
Configure groups
Add your group configuration in either the dbt_project.yml
or groups.yml
file. For example:
version: 2
groups:
- name: finance
description: "Models related to the finance department"
owner:
# 'name' or 'email' is required
name: "Finance Team"
email: finance@dbtlabs.com
slack: finance-data
- name: marketing
description: "Models related to the marketing department"
owner:
name: "Marketing Team"
email: marketing@dbtlabs.com
slack: marketing-data