Skip to main content

View Selection Tool for dbt (python part)

Project description

ViewSelectionAdvisor

Welcome to ViewSelectionAdvisor, a tool designed to help dbt users address the problem of model materialization. This tool consists of two separate packages, each hosted in its own GitHub repository:

What does it do?

Most dbt projects are structured with a DAG that includes staging, intermediate, and marts models. Typically, staging and intermediate models are stored as views, while marts models are stored as tables. However, this default configuration may not always be the most efficient from a performance perspective. Determining which models should be materialized and which should not can be challenging. This is where ViewSelectionAdvisor comes in to help. By using this tool, you are advised on the best materialization strategy for you models in dbt.

How does it work?

ViewSelectionAdvisor determines the optimal configuration of materialized models by evaluating all possible configurations. For each configuration, it estimates the total cost of building your entire DAG using PostgreSQL's EXPLAIN command.

Note: ViewSelectionAdvisor assumes that all destination nodes are already materialized as tables. Consequently, these nodes will not appear in the provided advice.

Note 2: By default, ViewSelectionAdvisor only looks at materialization configurations of at most 2 models. This can be changed using the max_materializations variable (see overview of variables).

A note on Elementary's defaults materializations warning

Please note that when running any of the dbt run commands in the coming steps, it is possible that you observe a warning from dbt on elementary trying to override default materializations. This is not a problem, as the developers of Elementary are aware of this and working on a solution. Furthermore, the parts of the elementary package that are affected by this are not relevant for ViewSelectionAdvisor.

Installation Instructions

dbt part

  1. Include ViewSelectionAdvisor in your packages.yml file:

      - git: "https://github.com/bramreinders97/view_selection_tool_dbt.git"
        revision: 4b7990736f651ae08f8d4a7a260f2c10ad1d862b
    
  2. Update your dbt_project.yml file:

    • Schema Configuration: Specify the schema appendix where dbt should store the relevant tables:

        models:
          elementary:
            +schema: elementary
          view_selection_tool:
            +schema: view_selection_tool
      

      These settings ensure that if your project's tables are stored in schema x, then the tables from elementary will be stored in x_elementary, and those from ViewSelectionAdvisor will be stored in x_view_selection_tool.

    • Variable Configuration: Set the following variables:

        vars:
          view_selection_tool:
            # Database where the elementary tables are located
            # (same as in your target profile from profiles.yml)
            elementary_src_db:  
      
            # Schema where the elementary tables are stored (e.g., `x_elementary`)
            src_schema:  
      
            # Name of your project as specified in this dbt_project.yml
            relevant_package:  
      

      This information allows ViewSelectionAdvisor to identify the data sources (elementary_src_db and src_schema) and the models to focus on (relevant_package).

  3. Import the packages and build Elementary models

    dbt deps
    dbt run --select elementary
    

    This will install both the view_selection_tool and elementary packages, and create empty tables for Elementary to fill (at schema x_elementary).

Python part

  1. Install the package using your preferred method:
    pip install view-selection-python
    
    or
    poetry add view-selection-python
    

Usage Instructions

Because ViewSelectionAdvisor relies entirely on the tables created by Elementary, it is crucial to ensure these tables are populated with the necessary information before running ViewSelectionAdvisor. Whenever you want to receive advice on the materialization of a DAG in dbt, follow these steps:

  1. Populate Elementary tables with the latest information:

    dbt run --select <your_project_name>
    

    Running your project populates the Elementary tables with the data required by ViewSelectionAdvisor.

    Note: This command only runs the models in your project, not the individual models from Elementary. However, the on-run-end hook of Elementary will execute automatically and provide all the necessary data.

  2. Run ViewSelectionAdvisor:

    • Transform Info From Elementary:
    dbt run --select view_selection_tool
    

    This transforms the information provided in the Elementary tables and fills the database schema x_view_selection_tool with all information the python part of the ViewSelectionAdvisor requires in order to give a proper advice.

    • Transform Info From Elementary:
    vst-advise
    

    This command compares all possible materialization configurations, and advises on the configuration with the lowest estimated cost.

Possible Variables for vst-advise

The following variables can be used to change the behavior of vst-advise:

Option Description
-h, --help Show this help message and exit
-mm <MAX_MATERIALIZATIONS>, --max_materializations <MAX_MATERIALIZATIONS> Set the maximum number of models to consider for materialization. Higher values provide more options but may increase runtime. Default is 2.
-p <PROFILE>, --profile <PROFILE> Select the profile to use
-t <TARGET>, --target <TARGET> Select the target profile to use

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

view_selection_python-0.1.5.tar.gz (18.7 kB view details)

Uploaded Source

Built Distribution

view_selection_python-0.1.5-py3-none-any.whl (22.4 kB view details)

Uploaded Python 3

File details

Details for the file view_selection_python-0.1.5.tar.gz.

File metadata

  • Download URL: view_selection_python-0.1.5.tar.gz
  • Upload date:
  • Size: 18.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.11.5 Windows/10

File hashes

Hashes for view_selection_python-0.1.5.tar.gz
Algorithm Hash digest
SHA256 7af721bcce1b41d90059cdab09f9bccd1ce423a9758a3fa3b89f79489b081666
MD5 36ccc7107622744a6fd99e1f2eaba351
BLAKE2b-256 a9408627449d10eb395195b2861e3f358dff3cab2bcb212f06cfe8e480ad04ce

See more details on using hashes here.

File details

Details for the file view_selection_python-0.1.5-py3-none-any.whl.

File metadata

File hashes

Hashes for view_selection_python-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 944842d0a620bf2a7318900a6fec831c8ca43eb4e540c7035eb307ee940f6359
MD5 b5ba06e716a899d96c8f1842120a981c
BLAKE2b-256 b739f852f42eeceebbbc7b2dc2b514fc367f6003a35273f1bd625c5f6e096a65

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page