Skip to content

Commit

Permalink
update waze dag - disable schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
OriHoch authored Jun 21, 2022
1 parent b03abc0 commit 77c22e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion airflow_server/dags/waze.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
default_args={
"owner": "airflow",
},
schedule_interval="*/5 * * * *", # Every 5 minutes
# disabled due to extreme load on DB and infrastructure
# do not enable a schedule before fixing this dag logic to be more efficient
schedule_interval=None,
catchup=False,
start_date=days_ago(2),
)
Expand Down

0 comments on commit 77c22e0

Please sign in to comment.