Skip to main content

Model notifications beta

Set up dbt to notify the appropriate owners — through Slack, email, or both — about any failures your models have encountered. When models fail, your reports are no longer accurate and the data can no longer be trusted so it's important to resolve these failures quickly.

To be timely and keep the number of notifications to a reasonable amount, dbt observes the following guidelines when notifying the model owners:

  • For the first model that fails, send a notification to each unique model owner. This means that each owner receives only one notification, the initial one.
  • Don't send any notifications about subsequent model failures while a dbt job is still running.
  • At the end of a job run, send a recap notification that lists all the models that failed where the user is listed as an owner.

Create configuration YAML files in your project for dbt to send notifications about the failures with your models.

Beta feature

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.

Prerequisites

Configure groups

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

Set up models

version: 2

models:
- name: sales
description: "Sales data model"
config:
group: finance

- name: campaigns
description: "Campaigns data model"
config:
group: marketing

0