-
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.
Deprecate some functions in the experimental API (#19931)
This PR seeks to deprecate some functions in the experimental API. Some of the deprecated functions are only used in the experimental REST API, others that are valid are being moved out of the experimental package. (cherry picked from commit 6239ae9)
- Loading branch information
1 parent
daebc58
commit 663bb54
Showing
20 changed files
with
435 additions
and
198 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
# | ||
# 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. | ||
"""Delete DAGs APIs.""" | ||
import logging | ||
|
||
from sqlalchemy import or_ | ||
|
||
from airflow import models | ||
from airflow.exceptions import AirflowException, DagNotFound | ||
from airflow.models import DagModel, TaskFail | ||
from airflow.models.serialized_dag import SerializedDagModel | ||
from airflow.utils.db import get_sqla_model_classes | ||
from airflow.utils.session import provide_session | ||
from airflow.utils.state import State | ||
|
||
log = logging.getLogger(__name__) | ||
|
||
|
||
@provide_session | ||
def delete_dag(dag_id: str, keep_records_in_log: bool = True, session=None) -> int: | ||
""" | ||
:param dag_id: the dag_id of the DAG to delete | ||
:param keep_records_in_log: whether keep records of the given dag_id | ||
in the Log table in the backend database (for reasons like auditing). | ||
The default value is True. | ||
:param session: session used | ||
:return count of deleted dags | ||
""" | ||
log.info("Deleting DAG: %s", dag_id) | ||
running_tis = ( | ||
session.query(models.TaskInstance.state) | ||
.filter(models.TaskInstance.dag_id == dag_id) | ||
.filter(models.TaskInstance.state == State.RUNNING) | ||
.first() | ||
) | ||
if running_tis: | ||
raise AirflowException("TaskInstances still running") | ||
dag = session.query(DagModel).filter(DagModel.dag_id == dag_id).first() | ||
if dag is None: | ||
raise DagNotFound(f"Dag id {dag_id} not found") | ||
|
||
# Scheduler removes DAGs without files from serialized_dag table every dag_dir_list_interval. | ||
# There may be a lag, so explicitly removes serialized DAG here. | ||
if SerializedDagModel.has_dag(dag_id=dag_id, session=session): | ||
SerializedDagModel.remove_dag(dag_id=dag_id, session=session) | ||
|
||
count = 0 | ||
|
||
for model in get_sqla_model_classes(): | ||
if hasattr(model, "dag_id"): | ||
if keep_records_in_log and model.__name__ == 'Log': | ||
continue | ||
cond = or_(model.dag_id == dag_id, model.dag_id.like(dag_id + ".%")) | ||
count += session.query(model).filter(cond).delete(synchronize_session='fetch') | ||
if dag.is_subdag: | ||
parent_dag_id, task_id = dag_id.rsplit(".", 1) | ||
for model in TaskFail, models.TaskInstance: | ||
count += ( | ||
session.query(model).filter(model.dag_id == parent_dag_id, model.task_id == task_id).delete() | ||
) | ||
|
||
# Delete entries in Import Errors table for a deleted DAG | ||
# This handles the case when the dag_id is changed in the file | ||
session.query(models.ImportError).filter(models.ImportError.filename == dag.fileloc).delete( | ||
synchronize_session='fetch' | ||
) | ||
|
||
return count |
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
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
Oops, something went wrong.