The scheduler does not appear to be running. Last heartbeat was received .
The DAGs list may not update, and new tasks will not be scheduled.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | from airflow.operators.bash_operator import BashOperator
from airflow import DAG
from datetime import datetime, timedelta
args = {
'owner': 'lidayuan',
'start_date': datetime(2022, 2, 23),
'email': 'gaoqiang@lenztechretail.com',
'email_on_failure': False,
'email_on_retry': False,
'retries': 0,
'retry_delay': timedelta(minutes=1),
}
dag = DAG(
dag_id='pg_hsm_new',
default_args=args,
schedule_interval='00 19 * * *',
dagrun_timeout=timedelta(minutes=200))
t1=BashOperator(task_id="pg_w_new",bash_command='cd /usr/local/airflow/dags/bi_etl/bi_project_airflow/project_common/ && python3 pg_hsm/pg_hsm_w_new4_newppz.py',dag=dag)
t5=BashOperator(task_id="pg_bi_psku_2q",bash_command='cd /usr/local/airflow/dags/bi_etl/bi_project_airflow/project_common/ && python pg_hsm/pg_hsm_psku_months_compared.py',dag=dag)
t1.set_downstream(t5)
|