Skip to main content

Disabling Models

If you do not require certain modules provided by the package you have the option to disable them using the model configuration in your project yaml. For instance to disable the users module in the snowplow_unified package:

dbt_project.yml
models:
snowplow_unified:
users:
enabled: false

For other models, you can identify the path to the models in your dbt_packages folder in your project. Note you should disable the entire folder, now just the derived model itself otherwise the this run tables will still process each run.

tip

Any dependent modules will also need to be disabled - for instance if you disabled the sessions module in the unified package, you will also have to disable the users module.

Was this page helpful?