Deprecating a model
Overview
In the previous tutorial, we discovered app_installs
was replaced by app_installs_v2
.
This tutorial will walk through the deprecation of app_installs
and demonstrate
how SDF can help overcome the two big hurdles in deprecating a model:
- Preventing prod from breaking by tracking and resolving downstream dependencies
- Setting up guardrails to prevent future mistakes
Prerequisites
Completion of the previous tutorial.
Setup
Reference to Metadata Files
SDF’s semantic understanding is based on metadata files, defining your custom business
logic, and smart propagation of values. To get started, we need to reference the metadata
directory by simply including the relevant paths in our workspace configuration file, workspace.sdf.yml
.
Open the file workspace.sdf.yml
and uncomment the following:
Note
- The classifications folder contains one YAML file for table classifiers, and one for column classifiers.
- The metadata folder is structured based on our models folder.
- The reports folder is currently empty.
We will talk about all of these a bit later.
Now, the paths are included in our project.
Guide
Before Deprecation
Before deprecating a model, we can run an impact analysis on the its downstream dependencies using SDF’s lineage command. We simply run:
Table: moms_flower_shop.staging.app_installs
moms_flower_shop.staging.app_installs.campaign_id
moms_flower_shop.staging.app_installs.campaign_name
│
│ copy
└──────┐
moms_flower_shop.analytics.agg_installs_and_campaigns.campaign_name
moms_flower_shop.staging.app_installs.campaign_type
moms_flower_shop.staging.app_installs.customer_id
│
│ mod
└──────┐
moms_flower_shop.analytics.agg_installs_and_campaigns.distinct_installs
moms_flower_shop.staging.app_installs.event_id
moms_flower_shop.staging.app_installs.install_time
│
│ mod
└──────┐
moms_flower_shop.analytics.agg_installs_and_campaigns.install_date
moms_flower_shop.staging.app_installs.platform
│
│ copy
└──────┐
moms_flower_shop.analytics.agg_installs_and_campaigns.platform
Wow! The model agg_installs_and_campaigns
is also using the
old version table!
Classify the Model as Deprecated
The file classifications/table_classifiers.sdf.yml
holds definitions of
a table level classifier called TABLE_STATUS
. You can see that one of the
table status options is deprecated
.
To add the classifier to our table, navigate to the table’s metadata file
metadata/staging/app_installs.sdf.yml
. Remove the commented
section assigning the TABLE_STATUS.deprecated
classifier to the table:
Let’s compile and see how it looks:
Schema moms_flower_shop.staging.app_installs
This table is a staging table which adds campaign information to app install events
[TABLE_STATUS.deprecated]
┌───────────────┬───────────┬────────────┬──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
│ column_name ┆ data_type ┆ classifier ┆ description │
╞═══════════════╪═══════════╪════════════╪══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╡
│ event_id ┆ bigint ┆ ┆ │
│ customer_id ┆ bigint ┆ ┆ The identifier of the customer that performed the event │
│ install_time ┆ timestamp ┆ ┆ │
│ platform ┆ varchar ┆ ┆ iOS or Android │
│ campaign_id ┆ bigint ┆ ┆ The identifier of the campaign that is associated with the event │
│ campaign_name ┆ varchar ┆ ┆ The campaign name associated with the campaign_id │
│ campaign_type ┆ varchar ┆ ┆ A substring of the campaign name contain the campaign type. Supported types - instagram_ads, friends_referrals, facebook_ads, google_search │
│ ┆ ┆ ┆ │
└───────────────┴───────────┴────────────┴──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
Read more about classifiers in the Classifiers Guide.
Create a Report of References to Deprecated Tables
We can create an SDF report to receive an instant snapshot of all models referencing deprecated tables throughout the entire data warehouse.
Create a new SQL file called deprecated_table_reference.sql
in the
reports/
directory. Copy the following query to your new file:
To learn more about SDF’s rich information schema and how you can leverage it to write your custom own reports, read our information schema reference page.
Thanks to SDF’s lineage tracking capabilities, we already know that agg_installs_and_campaigns
is referencing the old table. It’s a good test to check -
we expect it to fail.
Let’s check it out (pun intended):
Report moms_flower_shop.pub.deprecated_table_reference
┌───────────────────────────────────────────────────────┬───────────────────────────────────────┐
│ table_id ┆ upstream_deprecated_table_id │
╞═══════════════════════════════════════════════════════╪═══════════════════════════════════════╡
│ moms_flower_shop.analytics.agg_installs_and_campaigns ┆ moms_flower_shop.staging.app_installs │
└───────────────────────────────────────────────────────┴───────────────────────────────────────┘
1 rows.
It works! Now, we should fix agg_installs_and_campaigns
.
For more examples on getting health reports of your data warehouse and aggregate custom logic and static checks, read our full Reports Guide.
Resolve Downstream Dependencies
To make sure we won’t break prod if we delete our table, we can choose to resolve the dependency in one of two ways:
- If the model is not being used, we can just delete it altogether.
- Otherwise, we can update the
FROM
statement ofmodels/analytics/agg_installs_and_campaigns.sql
like we did for our previous model:
Let’s run our report again:
All clear!
Report moms_flower_shop.pub.deprecated_table_reference
┌──────────┬──────────────────────────────┐
│ table_id ┆ upstream_deprecated_table_id │
╞══════════╪══════════════════════════════╡
└──────────┴──────────────────────────────┘
0 rows.
That was really cool, ha? Let’s explore what other cool things we can do with SDF’s information schema and semantic understanding in our next tutorial - enriching your warehouse