dbt-fal
dbt-fal copied to clipboard
do more with dbt. dbt-fal helps you run Python alongside dbt, so you can send Slack alerts, detect anomalies and build machine learning models.
**Describe the bug** I'm trying to set up a fal script to send a message to slack if a source fails a freshness test (using the functionality added in [this...
**Describe the bug** When a FalDbt object is instantiated, it touches some data information on dbt's side, like the profile.yml that was read. We need to encapsulate this per instance....
I have a dataframe with date values and when writing it with `write_to_model` (same for `write_to_source`) it fails not knowing what to do with it. I tried some `dtype` values...
**Context** Currently, when we are using magic functions (i.e. `source()` and `write_to_source()`) we have to use them in the same script that fal is being told to run. If you...
**Is your feature request related to a problem? Please describe.** The fal runtime offers great easy usages like access to dbt functions (e.g. `ref`, `source`), automatically reading dbt profiles, etc....
When a dbt project has multiple profiles, which database should write_to_source write to? Context: When implementing write to source, I ref-ed a source that was `PROD_DB.PROD_SCHEMA.PROD_TABLE` and I was testing...
I have a script that makes a clustering model and when i'm trying to extract data to bigquery with the function `write_to_model` it fails after 10 minutes with the log:...
If we write in the yml file: ```yaml models: - name: other_model meta: fal: scripts: after: - fal_scripts/complete_other_model.py ``` Then to select said script it should be (with any graph...
# Initial proposal The idea of this function is to be able to update a model table after it has been run (as an after-hook). An example scenario would be:...