rjnn / dbt-materialize

Materialize plugin for dbt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dbt-materialize

dbt adapter for Materialize.

Note, this plugin is a work in progress, and not yet suitable for production.

Installation

This plugin can be installed via pip:

$ pip install dbt-materialize

Configuring your profile

Materialize is based on the Postgres database protocols, so use the dbt postgres settings in your connection profile, only substitute type: materialize for type: postgres.

Supported Features

Materializations

Type Supported? Form in Materialize
table materialized view
view view
incremental
ephemeral cte

TL;DR: Use tables instead of incremental models when using Materialize as your data warehouse.

Longer explanation:

dbt's incremental models are valuable because they only spend your time and money transforming new data that has arrived in your data source. Luckily, this is exactly what Materialize's materialized views were built to do! Better yet, our materialized views will always return up-to-date results without manual or configured refreshed. For more information, check out our documentation.

Seeds

dbt seed will create a static materialized view from a csv file. You will not be able to add to or update this view after it has been created.

Hooks

Not tested.

Custom Schemas

Not tested.

Sources

Not tested.

Testing and Documentation

dbt docs commands are supported.

dbt test is untested.

Snapshots

Not supported, will likely not be supported in the near term.

About

Materialize plugin for dbt

License:Apache License 2.0


Languages

Language:Python 100.0%