Skip to main content

Prefect - dbt integration

Project description

logo

Maintained by dataroots Python versions PiPy Downloads Code style: black Mypy checked

prefect-dbt-flow

Prefect-dbt-flow is a Python library that enables Prefect to convert dbt workflows into independent tasks within a Prefect flow. This integration simplifies the orchestration and execution of dbt models and tests using Prefect, allowing you to build robust data pipelines and monitor your dbt projects efficiently.

Active Development Notice: Prefect-dbt-flow is actively under development and may not be ready for production use. We advise users to be aware of potential breaking changes as the library evolves. Please check the changelog for updates.

Table of Contents

Introduction

Prefect-dbt-flow is a tool designed to streamline the integration of dbt workflows into Prefect. dbt is an immensely popular tool for building and testing data transformation models, and Prefect is a versatile workflow management system. This integration brings together the best of both worlds, empowering data engineers and analysts to create robust data pipelines.

Why Use Prefect-dbt-flow?

Simplified Orchestration

With Prefect-dbt-flow, you can orchestrate your dbt workflows with ease. Define and manage your dbt projects and models as Prefect tasks, creating a seamless pipeline for data transformation.

Simplified Orchestration

Monitoring and Error Handling

Prefect provides extensive monitoring capabilities and error handling. Now, you can gain deep insights into the execution of your dbt workflows and take immediate action in case of issues.

Monitoring and Error Handling

Workflow Consistency

Ensure your dbt workflows run consistently by managing them through Prefect. This consistency is crucial for maintaining data quality and reliability.

Workflow Consistency

How to Install

You can install Prefect-dbt-flow via pip:

pip install prefect-dbt-flow

Basic Usage

Here's an example of how to use Prefect-dbt-flow to create a Prefect flow for your dbt project:

from prefect_dbt_flow import dbt_flow
from prefect_dbt_flow.dbt import DbtProfile, DbtProject, DbtDagOptions

my_flow = dbt_flow(
        project=DbtProject(
            name="my_flow",
            project_dir="path_to/dbt_project",
            profiles_dir="path_to/dbt_profiles",
        ),
        profile=DbtProfile(
            target="dev",
        ),
        dag_options=DbtDagOptions(
            run_test_after_model=True,
        ),
    )

if __name__ == "__main__":
    my_flow()

For more information consult the Getting started guide

Inspiration

Prefect-dbt-flow draws inspiration from various projects in the data engineering and workflow orchestration space, including:

License

This project is licensed under the MIT License. You are free to use, modify, and distribute this software as per the terms of the license. If you find this project helpful, please consider giving it a star on GitHub.

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

prefect_dbt_flow-0.1.2.tar.gz (9.1 kB view hashes)

Uploaded Source

Built Distribution

prefect_dbt_flow-0.1.2-py3-none-any.whl (9.5 kB view hashes)

Uploaded Python 3

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