-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Limit the number of queued dagruns created by the Scheduler (#18065)
There's no limit to the amount of queued dagruns to create currently and it has become a concern with issues raised against it. See #18023 and #17979 Co-authored-by: Sam Wheating <[email protected]>
- Loading branch information
1 parent
28de326
commit 0eb41b5
Showing
7 changed files
with
122 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
airflow/migrations/versions/ccde3e26fe78_add_index_on_state_dag_id_for_queued_.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
"""Add index on state, dag_id for queued dagrun | ||
Revision ID: ccde3e26fe78 | ||
Revises: 092435bf5d12 | ||
Create Date: 2021-09-08 16:35:34.867711 | ||
""" | ||
|
||
from alembic import op | ||
from sqlalchemy import text | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = 'ccde3e26fe78' | ||
down_revision = '092435bf5d12' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
"""Apply Add index on state, dag_id for queued dagrun""" | ||
with op.batch_alter_table('dag_run') as batch_op: | ||
batch_op.create_index( | ||
'idx_dag_run_queued_dags', | ||
["state", "dag_id"], | ||
postgres_where=text("state='queued'"), | ||
mssql_where=text("state='queued'"), | ||
sqlite_where=text("state='queued'"), | ||
) | ||
|
||
|
||
def downgrade(): | ||
"""Unapply Add index on state, dag_id for queued dagrun""" | ||
with op.batch_alter_table('dag_run') as batch_op: | ||
batch_op.drop_index('idx_dag_run_queued_dags') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters