Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a CLI command airflow config update to update the config changes from airflow 2.x to 3. #48403

Merged
merged 9 commits into from
Apr 3, 2025

Conversation

sunank200
Copy link
Collaborator

@sunank200 sunank200 commented Mar 26, 2025

This PR introduces the airflow config update CLI command to help users transition smoothly from Airflow 2.x to 3. This command scans the current airflow.cfg file , then updates configuration parameters that have been removed, renamed, or had their default values changed. In addition, it cleans out deprecated configuration values (as updated in #47761 that have been emitting warnings in Airflow 2.x. For each such section-option:

  • Renamed: Options that have been renamed (or moved across sections) are written under their new names with a comment indicating their original location.
  • Removed Options: Deprecated options are omitted from the updated file.
  • Default Value Updates: When an option’s value is updated to a new default (or if the effective value equals the default), the option is written as a commented line. A comment is added - for example:
  # Default updated from OldDefault to NewDefault
  # default_key = NewDefault

In addition, a backup of the original airflow.cfg is created before updating.

Examples:

  • Renamed Option:
    A legacy key from the [admin] section:

    hide_sensitive_variable_fields = True

    is moved and renamed to core section:

    # Renamed from admin.hide_sensitive_variable_fields
    # hide_sensitive_var_conn_fields = True

    in the [core] section.

  • Removed Option:
    Deprecated options such as

    check_slas = True

    in [core] are omitted entirely from the new configuration.

  • Default Value Update:
    If an option in [core] is set to “OldDefault” (e.g. default_key = OldDefault) and the new default is “NewDefault”, the updated file will show as comment:

    [core]
    # Default updated from OldDefault to NewDefault
    # default_key = NewDefault

Usage Examples:

  • Update the Entire Configuration:

    airflow config update
  • Update Specific Sections:

    airflow config update --section core,database
  • Update Specific Options:

    airflow config update --option sql_alchemy_conn,catchup_by_default
  • Ignore Specific Sections/Options:

    airflow config update --ignore-section webserver --ignore-option check_slas
  • Dry run for dummy detailed output:

    airflow config update --dry-run

closes: [#48376]

Tested locally:

  • old airflow.cfg
Screenshot 2025-03-27 at 5 03 40 PM
  • After running airflow config update:
Screenshot 2025-03-27 at 5 03 57 PM Screenshot 2025-03-27 at 5 34 16 PM
  • Also added the option to dry run:
Screenshot 2025-03-27 at 7 28 39 PM

^ Add meaningful description above
Read the Pull Request Guidelines for more information.
In case of fundamental code changes, an Airflow Improvement Proposal (AIP) is needed.
In case of a new dependency, check compliance with the ASF 3rd Party License Policy.
In case of backwards incompatible changes please leave a note in a newsfragment file, named {pr_number}.significant.rst or {issue_number}.significant.rst, in airflow-core/newsfragments.

@sunank200 sunank200 force-pushed the airflow-config-update branch from 885a0a5 to 3306d72 Compare March 26, 2025 14:47
@sunank200 sunank200 changed the title Add airflow config update CLI command for configuration changes migration from Airflow 2.x to 3 Add a CLI command airflow config update to update the config changes from airflow 2.x to 3. Mar 26, 2025
@sunank200 sunank200 self-assigned this Mar 26, 2025
@phanikumv phanikumv requested review from Lee-W and uranusjr March 26, 2025 15:55
@sunank200 sunank200 force-pushed the airflow-config-update branch 2 times, most recently from 7f7224a to 604d669 Compare March 26, 2025 17:14
@sunank200 sunank200 requested a review from jedcunningham March 26, 2025 17:14
@sunank200 sunank200 marked this pull request as ready for review March 26, 2025 17:14
@sunank200 sunank200 force-pushed the airflow-config-update branch 2 times, most recently from 041b7ec to 1db3f11 Compare March 27, 2025 13:26
@sunank200 sunank200 force-pushed the airflow-config-update branch 2 times, most recently from ed986cd to a734477 Compare March 27, 2025 18:53
@sunank200 sunank200 removed the request for review from vincbeck March 28, 2025 14:01
@sunank200 sunank200 force-pushed the airflow-config-update branch 2 times, most recently from dbbebb1 to 2a1334e Compare March 28, 2025 14:42
@sunank200 sunank200 requested a review from Lee-W March 28, 2025 14:42
@sunank200 sunank200 force-pushed the airflow-config-update branch 7 times, most recently from d6174ec to 9b81c6d Compare April 2, 2025 07:06
Copy link
Member

@Lee-W Lee-W left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mostly looks good to me. Left some nitpicks

@sunank200 sunank200 force-pushed the airflow-config-update branch 4 times, most recently from 33039d4 to 26e26bc Compare April 2, 2025 23:08
@sunank200 sunank200 force-pushed the airflow-config-update branch from 26e26bc to 0ed965f Compare April 3, 2025 06:40
@phanikumv phanikumv merged commit aec5f04 into apache:main Apr 3, 2025
45 checks passed
@phanikumv phanikumv deleted the airflow-config-update branch April 3, 2025 07:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants