Simplest way to run dbt python models.
Project description
Welcome to dbt-fal 👋
dbt-fal adapter is the ✨easiest✨ way to run your dbt Python models.
Starting with dbt v1.3, you can now build your dbt models in Python. This leads to some cool use cases that was once difficult to build with SQL alone. Some examples are:
- Using Python stats libraries to calculate stats
- Building forecasts
- Building other predictive models such as classification and clustering
This is fantastic! BUT, there is still one issue though! The developer experience with Snowflake and Bigquery is not great, and there is no Python support for Redshift and Postgres.
dbt-fal provides the best environment to run your Python models that works with all other data warehouses! With dbt-fal, you can:
- Build and test your models locally
- Isolate each model to run in its own environment with its own dependencies
- [Coming Soon] Run your Python models in the ☁️ cloud ☁️ with elasticly scaling Python environments.
- [Coming Soon] Even add GPUs to your models for some heavier workloads such as training ML models.
Getting Started
1. Install dbt-fal
pip install dbt-fal[bigquery, snowflake]
Add your current warehouse here
2. Update your profiles.yml
and add the fal adapter
jaffle_shop:
target: dev_with_fal
outputs:
dev_with_fal:
type: fal
db_profile: dev_bigquery # This points to your main adapter
dev_bigquery:
type: bigquery
...
Don't forget to point to your main adapter with the db_profile
attribute. This is how the fal adapter knows how to connect to your data warehouse.
3. dbt run
!
That is it! It is really that simple 😊
4. [🚨 Cool Feature Alert 🚨] Environment management with dbt-fal
If you want some help with environment management (vs sticking to the default env that the dbt process runs in), you can create a fal_project.yml in the same folder as your dbt project and have “named environments”:
In your dbt project folder:
$ touch fal_project.yml
# Paste the config below
environments:
- name: ml
type: venv
requirements:
- prophet
and then in your dbt model:
$ vi models/orders_forecast.py
def model(dbt, fal):
dbt.config(fal_environment="ml") # Add this line
df: pd.DataFrame = dbt.ref("orders_daily")
The dbt.config(fal_environment=“ml”)
will give you an isolated clean env to run things in, so you dont pollute your package space.
5. [Coming Soon™️] Move your compute to the Cloud!
Let us know if you are interested in this. We are looking for beta users.
Have feedback or need help?
- Join us in fal on Discord
- Join the dbt Community and go into our #tools-fal channel
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dbt-fal-1.4.8.tar.gz
.
File metadata
- Download URL: dbt-fal-1.4.8.tar.gz
- Upload date:
- Size: 36.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.16 Linux/5.15.0-1036-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5564a5722caf7fdc72fb650bb54a18d14e81a85956b87d95070f1caa2a5075fd |
|
MD5 | 535bbf608cdef1ff000ab1130f892b5e |
|
BLAKE2b-256 | 554f38c1658fe78c9018689c61ea74b05a271d7104925a655abc2c39c9cdd9d4 |
File details
Details for the file dbt_fal-1.4.8-py3-none-any.whl
.
File metadata
- Download URL: dbt_fal-1.4.8-py3-none-any.whl
- Upload date:
- Size: 49.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.16 Linux/5.15.0-1036-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ddef4a436c723e4dc33d13ee7633811a47c99200d5034ccfbff5ca471bed0d5 |
|
MD5 | 83fa3c182922dbc88f60240427c11afa |
|
BLAKE2b-256 | 547b8deaf093542ce522aadd070a129c39734bf5a2e81d4af122d9983e3b795e |