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.
Merge branch 'apache:main' into main
- Loading branch information
Showing
83 changed files
with
2,770 additions
and
2,999 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
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
63 changes: 63 additions & 0 deletions
63
airflow/migrations/versions/0052_3_0_0_add_deadline_alerts_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,63 @@ | ||
# | ||
# 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 deadline alerts table. | ||
Revision ID: 237cef8dfea1 | ||
Revises: 038dc8bc6284 | ||
Create Date: 2024-12-05 22:08:38.997054 | ||
""" | ||
|
||
from __future__ import annotations | ||
|
||
import sqlalchemy as sa | ||
import sqlalchemy_jsonfield | ||
from alembic import op | ||
from sqlalchemy_utils import UUIDType | ||
|
||
from airflow.migrations.db_types import StringID | ||
from airflow.models import ID_LEN | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = "237cef8dfea1" | ||
down_revision = "038dc8bc6284" | ||
branch_labels = None | ||
depends_on = None | ||
airflow_version = "3.0.0" | ||
|
||
|
||
def upgrade(): | ||
op.create_table( | ||
"deadline", | ||
sa.Column("id", UUIDType(binary=False), nullable=False), | ||
sa.Column("dag_id", StringID(length=ID_LEN), nullable=True), | ||
sa.Column("dagrun_id", sa.Integer(), nullable=True), | ||
sa.Column("deadline", sa.DateTime(), nullable=False), | ||
sa.Column("callback", sa.String(length=500), nullable=False), | ||
sa.Column("callback_kwargs", sqlalchemy_jsonfield.jsonfield.JSONField(), nullable=True), | ||
sa.PrimaryKeyConstraint("id", name=op.f("deadline_pkey")), | ||
sa.ForeignKeyConstraint(columns=("dagrun_id",), refcolumns=["dag_run.id"], ondelete="CASCADE"), | ||
sa.ForeignKeyConstraint(columns=("dag_id",), refcolumns=["dag.dag_id"], ondelete="CASCADE"), | ||
sa.Index("deadline_idx", "deadline", unique=False), | ||
) | ||
|
||
|
||
def downgrade(): | ||
op.drop_table("deadline") |
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) | ||
) |
Oops, something went wrong.