mert_bakir
04/26/2023, 5:25 PMmeltano invoke airflow scheduler -D
, then I created a job and set up daily schedule.
schedules:
- name: test-schedule-01
interval: '@daily'
job: test-postgres-to-rds
How and when this will run? I don't see any dag on airflow ui. No dags folders exists. Do I need to create the dag myself, if so what does meltano schedules command do? I'm missing something here.
orchestrate/
└── airflow
├── airflow-scheduler.err
├── airflow-scheduler.log
├── airflow-scheduler.out
├── airflow-scheduler.pid
├── airflow-webserver.err
├── airflow-webserver.log
├── airflow-webserver.out
├── airflow.cfg
└── webserver_config.py
mert_bakir
04/26/2023, 5:31 PMPython 3.9.16
Meltano 2.18.0
utilities:
- name: airflow
variant: apache
pip_url: git+<https://github.com/meltano/airflow-ext.git@main> apache-airflow==2.3.3
--constraint <https://raw.githubusercontent.com/apache/airflow/constraints-2.3.3/constraints-no-providers-${MELTANO__PYTHON_VERSION}.txt>
config:
webserver:
web_server_port: '8080'
core:
load_examples: 'False'
user
04/26/2023, 5:35 PMmeltano invoke airflow:initialize
which creates a dag generator in your project to automatically populate airflow. Do you have a dags folder in your orchestrate
directory?mert_bakir
04/26/2023, 5:38 PMuser
04/26/2023, 5:41 PMmert_bakir
04/26/2023, 5:48 PMmert_bakir
04/26/2023, 5:49 PM