Stéphane Burwash
06/10/2022, 4:05 PMNo DAG created for schedule 'dbt-job' because its interval is set to `@once`.
Is this a normal interaction?aaronsteers
06/10/2022, 4:07 PM@once in your yaml file? If not, if you don't see something like interval: @once in yaml, that would appear to be a bug on the Meltano side.aaronsteers
06/10/2022, 4:08 PMschedules: for reference?Stéphane Burwash
06/10/2022, 4:11 PM- name: dbt-job
extractor: tap-dummy
loader: target-stitch
transform: run
interval: '@once'
start_date: 2015-12-01 00:00:00
But that's because if I remove it, my IDE hates me:
My goal is to have a dag that is ONLY meant to be manually triggeredaaronsteers
06/10/2022, 4:25 PMfiles-airflow repo?
In the meanwhile, if you are comfortable with Python and airflow, I think you can modify your own project's meltano.py file here: https://github.com/meltano/files-airflow/blob/main/bundle/orchestrate/dags/meltano.py#L54-L58aaronsteers
06/10/2022, 4:26 PMaaronsteers
06/10/2022, 4:27 PMStéphane Burwash
06/10/2022, 4:28 PMStéphane Burwash
06/10/2022, 5:58 PM