-
Notifications
You must be signed in to change notification settings - Fork 16.4k
Closed
Labels
kind:bugThis is a clearly a bugThis is a clearly a bugpending-responsestaleStale PRs per the .github/workflows/stale.yml policy fileStale PRs per the .github/workflows/stale.yml policy file
Description
We have made make max_active_run =3 in our dag and in config file we have made max_active_run_per_dag=10
But our code is running only on one run.
Here is the configuration for the dag.
`
default_args = {
'owner': 'DE',
#'start_date': datetime(2021, 2, 24, 8, 6, 0),
#'start_date': datetime.utcnow() + timdelta(seconds=) - timedelta(=),
'depends_on_past': False,
'email_on_failure': False,
'email_on_retry': False,
'retries': 3,
'retry_delay': timedelta(minutes=1),
}
dag = DAG(dag_id='Test', default_args=default_args,
description='',
schedule_interval='*/1 * * * *',
catchup=True,
start_date=datetime(2021, 2, 24, 8, 6, 0),
max_active_runs=3,
is_paused_upon_creation=False)`
Metadata
Metadata
Assignees
Labels
kind:bugThis is a clearly a bugThis is a clearly a bugpending-responsestaleStale PRs per the .github/workflows/stale.yml policy fileStale PRs per the .github/workflows/stale.yml policy file