forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove
processor_subdir
(apache#45088)
This is in preparation for supporting bundles; the subdir concept will be superseded by separate local bundles. And things like the dag processor will be able to operate on a subset of bundles.
- Loading branch information
1 parent
7fe46e1
commit 776ebe4
Showing
26 changed files
with
1,922 additions
and
2,138 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
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
74 changes: 74 additions & 0 deletions
74
airflow/migrations/versions/0053_3_0_0_remove_processor_subdir.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,74 @@ | ||
# | ||
# 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. | ||
|
||
""" | ||
Remove processor_subdir. | ||
Revision ID: 5c9c0231baa2 | ||
Revises: 237cef8dfea1 | ||
Create Date: 2024-12-18 19:10:26.962464 | ||
""" | ||
|
||
from __future__ import annotations | ||
|
||
import sqlalchemy as sa | ||
from alembic import op | ||
|
||
revision = "5c9c0231baa2" | ||
down_revision = "237cef8dfea1" | ||
branch_labels = None | ||
depends_on = None | ||
airflow_version = "3.0.0" | ||
|
||
|
||
def upgrade(): | ||
"""Apply Remove processor_subdir.""" | ||
with op.batch_alter_table("callback_request", schema=None) as batch_op: | ||
batch_op.drop_column("processor_subdir") | ||
|
||
with op.batch_alter_table("dag", schema=None) as batch_op: | ||
batch_op.drop_column("processor_subdir") | ||
|
||
with op.batch_alter_table("import_error", schema=None) as batch_op: | ||
batch_op.drop_column("processor_subdir") | ||
|
||
with op.batch_alter_table("serialized_dag", schema=None) as batch_op: | ||
batch_op.drop_column("processor_subdir") | ||
|
||
|
||
def downgrade(): | ||
"""Unapply Remove processor_subdir.""" | ||
with op.batch_alter_table("serialized_dag", schema=None) as batch_op: | ||
batch_op.add_column( | ||
sa.Column("processor_subdir", sa.VARCHAR(length=2000), autoincrement=False, nullable=True) | ||
) | ||
|
||
with op.batch_alter_table("import_error", schema=None) as batch_op: | ||
batch_op.add_column( | ||
sa.Column("processor_subdir", sa.VARCHAR(length=2000), autoincrement=False, nullable=True) | ||
) | ||
|
||
with op.batch_alter_table("dag", schema=None) as batch_op: | ||
batch_op.add_column( | ||
sa.Column("processor_subdir", sa.VARCHAR(length=2000), autoincrement=False, nullable=True) | ||
) | ||
|
||
with op.batch_alter_table("callback_request", schema=None) as batch_op: | ||
batch_op.add_column( | ||
sa.Column("processor_subdir", sa.VARCHAR(length=2000), autoincrement=False, nullable=True) | ||
) |
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.