Hi, I could not find this info on the docs: is the...
# troubleshooting
r
Hi, I could not find this info on the docs: is there any way of temporarily stopping/cancelling a schedule, other than removing it entirely from the
meltano.yml
file and re-deploying the Meltano project?
Seems like no such thing as “`schedule stop`” or “`schedule remove`” exists, just
add
,
run
and
list
are the supported operations (https://gitlab.com/meltano/meltano/-/blob/master/src/meltano/cli/schedule.py) Do you think this would be a good addition to Meltano? Shall I create an issue for it? Use case: When a known issue is happening in the source and we temporarily want to stop the schedule from running.
meltano schedule stop/start
would be one option, another would be to remove it entirely and add it again once we know the issue has been solved (
meltano schedule remove
?)
a
meltano invoke airflow dags pause YOUR_DAG_ID
r
oh wow, thanks a lot @alexander_butler - was looking in the wrong place!