Skip to content

Commit

Permalink
Tweak concurrency settings
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Jan 24, 2025
1 parent 36a9819 commit 0cf8c5f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dags/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ def run_make_analysis(
# to finish
schedule="30 0 * * *",
catchup=False,
concurrency=1,
max_active_runs=1,
max_active_tasks=2,
max_active_runs=2,
) as dag_full:
# YYYY-MM-DD
start_day = "{{ ds }}"
Expand Down Expand Up @@ -116,8 +116,8 @@ def run_make_analysis(
# to finish
schedule="0 30 * * *",
catchup=False,
concurrency=1,
max_active_runs=1,
max_active_tasks=2,
max_active_runs=2,
) as dag_full:
# YYYY-MM-DDTHH
start_hour = "{{ ts }}"[:13]
Expand Down

0 comments on commit 0cf8c5f

Please sign in to comment.