From 36b68325aabe6e83b0cc57f596eec760955d03d0 Mon Sep 17 00:00:00 2001 From: Raphael Dumas Date: Wed, 4 Oct 2023 16:09:10 -0400 Subject: [PATCH] #713 reduce concurrency and no catchup --- dags/pull_wys.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dags/pull_wys.py b/dags/pull_wys.py index 0ef8b31fa..9794e5e9c 100644 --- a/dags/pull_wys.py +++ b/dags/pull_wys.py @@ -69,6 +69,8 @@ def custom_fail_slack_alert(context: dict) -> str: @dag(dag_id = dag_name, default_args=default_args, + catchup=False, + max_active_runs=5, schedule_interval='0 15 * * *' # Run at 3 PM local time every day ) def pull_wys_dag(): @@ -118,4 +120,4 @@ def read_google_sheets(): pull_schedules() read_google_sheets() -pull_wys_dag() \ No newline at end of file +pull_wys_dag()