Common data models for creating type-2 slowly changing dimensions tables from mutable data sources in Dataform.
- BigQuery
- Redshift/PG
- Snowflake
If you would like us to add support for another warehouse, please get in touch via email or Slack
Add the package to your package.json
file in your Dataform project. You can find the most up to package version on the releases page.
Create a new JS file in your definitions/
folder create an SCD table with the following example:
const scd = require("dataform-scd");
scd("source_data_scd", {
// A unique identifier for rows in the table.
uniqueKey: "user_id",
// A field that stores a timestamp or date of when the row was last changed.
timestamp: "updated_at",
// A field that stores the hash value of the fields that we want to track changes in. If you do not want to use the hash comparison, you may omit this field or set it to null
hash: "hash_value", // OPTIONAL
// The source table to build slowly changing dimensions from.
source: {
schema: "dataform_scd_example",
name: "source_data",
},
// Any configuration parameters to apply to the incremental table that will be created.
incrementalConfig: {
bigquery: {
partitionBy: "updated_at",
},
},
});
For more advanced customization of outputs, see the example.js.
Slowly changing dimensions can only by updated as quickly as these models are run. These models should typically be scheduled to run every day or every hour, depending on the granularity of changes you want to capture.
Depending on your data update method, you may want to use the hash field option to compare rows on each execution and only add the ones that have been changed or added. To do this, please make sure your table contains a hash field created using the hash function of your choice. You can find a list of the hash functions available in BigQuery here. On each incremental run, the query will compare the hashes for each unique identifier to the ones in the updated table. It will only keep the rows where the hash has changed or where the row ID is not found in the current data.
If you do not want to use the hash comparison, simply omit the hash parameter from the config file or set it to null
. If you do this, all rows with an updated timestamp will be added to the {name}_updates
table, even if the data did not otherwise change.
This package will create two relations in the warehouse, for a given name
these will be:
{name}
- a view withscd_valid_from
andscd_valid_to
fields{name}_updates
- an incremental table that stores the change history of the source table