I am looking at the ways to schedule DBT models in...
# plugins-general
p
I am looking at the ways to schedule DBT models independent of an ELT pipeline (I want to run some dbt models that need to be run only after the data from multiple sources is available, and some of the source data is loaded using third party tools). Looking at this thread I can see that I can add my dbt models in transform directory and create an airflow DAG with a BashOperator that executes
meltano invoke dbt ...
. But is there a way this can be managed under
schedules
in
meltano.yml
file? Or is there a plan to add this in future? It would be nice to be able to schedule DBT models independent of export and load, but still using a common way of managing/creating schedules.