-
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.
Add dag re-parsing request endpoint (#39138)
* Add dag re-parsing request endpoint * Fix migration files * Fix test_file_paths_in_queue_sorted_by_priority test * Fix database cleanup issue * Change http method to post * Fix static checks * Remove created object from response * Fix testcases * Fix testcases * Change http response status for duplicate request * Fix tests * Changed the airflow version in migration file * Update airflow/api_connexion/openapi/v1.yaml Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com> * Update airflow/api_connexion/openapi/v1.yaml Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com> * Update airflow/models/dagbag.py Co-authored-by: Wei Lee <weilee.rx@gmail.com> * Update airflow/dag_processing/manager.py Co-authored-by: Wei Lee <weilee.rx@gmail.com> * Better exception handling * Addressed PR comments * Fix tests * Update airflow/api_connexion/openapi/v1.yaml Co-authored-by: Jed Cunningham <66968678+jedcunningham@users.noreply.github.com> * Update airflow/api_connexion/endpoints/dag_parsing.py Co-authored-by: Jed Cunningham <66968678+jedcunningham@users.noreply.github.com> * Update airflow/api_connexion/openapi/v1.yaml Co-authored-by: Jed Cunningham <66968678+jedcunningham@users.noreply.github.com> * Update airflow/models/dagbag.py Co-authored-by: Jed Cunningham <66968678+jedcunningham@users.noreply.github.com> * Apply the suggestion from PR comments * Remove __eq__ magic method * Remove get_requests() method * Optimize database request * Update airflow/dag_processing/manager.py Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com> * Fix test * Change return status code * Fix test * Fix static checks --------- Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com> Co-authored-by: Wei Lee <weilee.rx@gmail.com> Co-authored-by: Jed Cunningham <66968678+jedcunningham@users.noreply.github.com>
- Loading branch information
1 parent
af3e2cf
commit 6bcec90
Showing
14 changed files
with
1,685 additions
and
1,266 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# 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. | ||
from __future__ import annotations | ||
|
||
from http import HTTPStatus | ||
from typing import TYPE_CHECKING, Sequence | ||
|
||
from flask import Response, current_app | ||
from itsdangerous import BadSignature, URLSafeSerializer | ||
from sqlalchemy import exc, select | ||
|
||
from airflow.api_connexion import security | ||
from airflow.api_connexion.exceptions import NotFound, PermissionDenied | ||
from airflow.auth.managers.models.resource_details import DagDetails | ||
from airflow.models.dag import DagModel | ||
from airflow.models.dagbag import DagPriorityParsingRequest | ||
from airflow.utils.session import NEW_SESSION, provide_session | ||
from airflow.www.extensions.init_auth_manager import get_auth_manager | ||
|
||
if TYPE_CHECKING: | ||
from sqlalchemy.orm import Session | ||
|
||
from airflow.auth.managers.models.batch_apis import IsAuthorizedDagRequest | ||
|
||
|
||
@security.requires_access_dag("PUT") | ||
@provide_session | ||
def reparse_dag_file(*, file_token: str, session: Session = NEW_SESSION) -> Response: | ||
"""Request re-parsing a DAG file.""" | ||
secret_key = current_app.config["SECRET_KEY"] | ||
auth_s = URLSafeSerializer(secret_key) | ||
try: | ||
path = auth_s.loads(file_token) | ||
except BadSignature: | ||
raise NotFound("File not found") | ||
|
||
requests: Sequence[IsAuthorizedDagRequest] = [ | ||
{"method": "PUT", "details": DagDetails(id=dag_id)} | ||
for dag_id in session.scalars(select(DagModel.dag_id).where(DagModel.fileloc == path)) | ||
] | ||
if not requests: | ||
raise NotFound("File not found") | ||
|
||
# Check if user has read access to all the DAGs defined in the file | ||
if not get_auth_manager().batch_is_authorized_dag(requests): | ||
raise PermissionDenied() | ||
|
||
parsing_request = DagPriorityParsingRequest(fileloc=path) | ||
session.add(parsing_request) | ||
try: | ||
session.commit() | ||
except exc.IntegrityError: | ||
session.rollback() | ||
return Response("Duplicate request", HTTPStatus.CREATED) | ||
return Response(status=HTTPStatus.CREATED) |
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/0144_2_10_0_added_dagpriorityparsingrequest_table.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. | ||
|
||
"""Added DagPriorityParsingRequest table. | ||
Revision ID: c4602ba06b4b | ||
Revises: 677fdbb7fc54 | ||
Create Date: 2024-04-17 17:12:05.473889 | ||
""" | ||
|
||
from __future__ import annotations | ||
|
||
import sqlalchemy as sa | ||
from alembic import op | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = "c4602ba06b4b" | ||
down_revision = "677fdbb7fc54" | ||
branch_labels = None | ||
depends_on = None | ||
airflow_version = "2.10.0" | ||
|
||
|
||
def upgrade(): | ||
"""Apply Added DagPriorityParsingRequest table.""" | ||
op.create_table( | ||
"dag_priority_parsing_request", | ||
sa.Column("id", sa.String(length=32), nullable=False), | ||
sa.Column("fileloc", sa.String(length=2000), nullable=False), | ||
sa.PrimaryKeyConstraint("id", name=op.f("dag_priority_parsing_request_pkey")), | ||
) | ||
|
||
|
||
def downgrade(): | ||
"""Unapply Added DagPriorityParsingRequest table.""" | ||
op.drop_table("dag_priority_parsing_request") |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
468c1db106e059c4a97f07b9f8be7edfa487099113e4611c74f61f17c0ea0d82 | ||
6ae5e112d66c30d36fbc27a608355ffd66853e34d7538223f69a71e2eba54b59 |
Oops, something went wrong.