Hi,
I would like know how to stop Airflow in Meltano after ran
meltano invoke airflow scheduler
How can I achieve this?
p
pat_nadolny
04/19/2022, 10:18 PM
Hey @edi_wijaya! Maybe you figured this out already but if you run airflow in the foreground using the command you provided then just sending a control+c will signal to airflow to terminate, if you ran it in the background using the
-D
flag you can kill the process using something like
pkill -f airflow
e
edi_wijaya
04/20/2022, 8:29 AM
@pat_nadolny thank you the response. I am going to use it.....