Skip to content
Development
Skill

/managed-airflow-migrations

Provides guidance for migrating Apache Airflow DAGs in Managed Service for Apache Airflow (MSAA; formerly Cloud Composer). Covers migration to Airflow 2.11.1 (MSAA Gen 2 and 3) and Airflow 3 (MSAA Gen 3), including environment inspection, GCS download/upload and scanning

From plugin
google-skills
17k104 skills
Install
$ npx -y skills add google/skills --skill managed-airflow-migrations --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/managed-airflow-migrations

Context preview

The summary Claude sees to decide when to auto-load this skill.

Provides guidance for migrating Apache Airflow DAGs in Managed Service for Apache Airflow (MSAA; formerly Cloud Composer). Covers migration to Airflow 2.11.1 (MSAA Gen 2 and 3) and Airflow 3 (MSAA Gen 3), including environment inspection, GCS download/upload and scanning

SKILL.md

managed-airflow-migrations.SKILL.md
name: managed-airflow-migrations
description: Provides guidance for migrating Apache Airflow DAGs in Managed Service for Apache Airflow (MSAA; formerly Cloud Composer). Covers migration to Airflow 2.11.1 (MSAA Gen 2 and 3) and Airflow 3 (MSAA Gen 3), including environment inspection, GCS download/upload and scanning patterns for breaking changes. Use when migrating the DAG code to newer Airflow version. Don't use when checking DAG run failures unrelated to code migration.
metadata:
  category: BigDataAndAnalytics

Managed Service for Apache Airflow (formerly Cloud Composer) Migration Guide

This skill guides you through the process of adjusting Airflow DAGs from an existing Managed Service for Apache Airflow (formerly Cloud Composer) environment (or available locally) to make them compatible with **Airflow 2.11.1** (MSAA Gen 2 or 3) or **Airflow 3** (MSAA Gen 3).

--------------------------------------------------------------------------------

Phase 1: Discovery & Download

Before making any changes, download the existing DAG files if explicitly requested. Inspect the source environment to confirm source version only if explicitly requested. For detailed instructions about environment inspection and downloading files check [references/environment-inspection.md](references/environment-inspection.md).

--------------------------------------------------------------------------------

Phase 2: Target Version & Dependency Mapping

2.1 Airflow 2.11.1+ Dependency Mapping

If migrating to Airflow 2.11.1 (MSAA Gen 2) or Airflow 3, use the list below to trace the version progression of key dependencies. The list covers changes needed to get to Airflow 2.11.1. Take them into account when migrating from Airflow 2 (earlier than 2.11.1) to Airflow 3.

Composer 2.10.0 (Airflow 2.10.2)

  • **Google Provider**: `10.26.0`
  • **SSH Provider**: `3.14.0`
  • **HTTP Provider**: `4.13.3`
  • **Breaking Changes**: *Baseline for oldest fully documented source.*

Composer 2.15.3 (Airflow 2.10.5)

  • **Google Provider**: `18.0.0`
  • **SSH Provider**: `4.1.4`
  • **HTTP Provider**: `5.3.4`
  • **Breaking Changes**:
  • **SSH Provider 4.0.0:** Hook `timeout` removed; `get_conn()` context

manager.

  • **HTTP Provider 5.0.0:** `SimpleHttpOperator` -> `HttpOperator`.
  • **Google Provider 11.0.0:** `BigQueryExecuteQueryOperator` removed.
  • **Google Provider 12.0.0:** Legacy Data Pipeline operators removed.
  • **Google Provider 13.0.0:** `AutoMLBatchPredictOperator` removed.
  • **Google Provider 17.0.0:** `BigQueryCreateEmptyTableOperator` and

`BigQueryCreateExternalTableOperator` removed; Life Sciences operators removed.

  • **Google Provider 18.0.0:** Legacy DV360 operators removed.

Composer 2.16.1 (Airflow 2.10.5)

  • **Google Provider**: `19.0.0`
  • **SSH Provider**: `4.1.6`
  • **HTTP Provider**: `5.5.0`
  • **Breaking Changes**: **Google Provider 19.0.0:** AutoML operators removed

(use Vertex AI).

Composer 2.17.0 (Target Airflow 2.11.1)

  • **Google Provider**: **`20.0.0`**
  • **SSH Provider**: **`5.0.0`**
  • **HTTP Provider**: **`6.0.2`**
  • **Breaking Changes**:
  • **SSH Provider 5.0.0:** `sshtunnel` removed (native tunneling).
  • **HTTP Provider 6.0.0:** JSON serialization.
  • **Google Provider 20.0.0:** ADLS Gen2 migration.

2.2 Airflow 3 Migration

If migrating to Airflow 3 (MSAA Gen 3), note that this is a major version upgrade with significant changes, including:

  • Decoupled Task SDK (imports change from `airflow` to `airflow.sdk`).
  • Removal of direct metadata DB access.
  • Renaming of `Dataset` to `Asset`.
  • Removal of SubDAGs and SLAs.
  • Changes to context variables availability.

Take into account all applicable changes within Airflow 2 (e.g. when migrating from Airflow 2.10.2, apply changes needed to move to Airflow 2.11.1 and Airflow 3 migration changes on top of that).

--------------------------------------------------------------------------------

Phase 3: Analysis & Remediation (Scanning Downloaded Files)

Run the scan commands from the root of your local workspace (`./migration_workspace` unless indicated otherwise).

--------------------------------------------------------------------------------

3.1 Airflow 2.11.1 Core & Dependency checks

Use these scans if migrating to Airflow 2.11.1+ (intermediate step when migrating to Airflow 3).

3.1.1 Dataset Scheduling (Airflow 2.11.0)

  • **Change:** DAGs scheduled on datasets only trigger if events occur while

the DAG is unpaused.

  • **Scan Command:** `grep -rn "Dataset(" ./dags`
  • **Remediation:** You MUST document that these DAGs must remain unpaused to

catch events, or plan manual triggers for catch-up.

3.1.2 HTML in Descriptions (Airflow 2.11.0)

  • **Change:** Raw HTML in DAG docs / params is escaped by default.
  • **Scan Command:**
    grep -rn -E "doc_md.*<|doc_md.*>|description.*<|description.*>" ./dags
  • **Remediation:** Convert HTML to Markdown, or set

`AIRFLOW__WEBSERVER__ALLOW_RAW_HTML_DESCRIPTIONS=True` in target.

3.1.3 Teardown Tasks (Airflow 2.10.5)

  • **Change:** Teardowns always run when a DAG is marked failed.
  • **Scan Command:** `grep -rn "as_teardown" ./dags`
  • **Remediation:** Ensure teardown tasks are idempotent.

3.1.4 Pendulum 3 Upgrade (Airflow 2.11.0)

  • **Change:** `Period` renamed to `Interval`, testing helpers removed.
  • **Scan Command (Code):**
    grep -rn -E "pendulum\.Period|pendulum\.period" ./dags
  • **Scan Command (Tests):**
    grep -rn -E "\.test\(|set_test_now\(" ./tests 2>/dev/null || true
  • **Remediation:** Replace `Period` with `Interval`, and `period(...)` with

`interval(...)`.

--------------------------------------------------------------------------------

3.2 Path A: Airflow 2.11.1 Provider Package Scan

3.2.1 SSH Provider (SSH 4

Read more
Ships withgoogle-skills

This repository contains Agent Skills for Google products and technologies, including Google Cloud. This repository is under active development.

Get the whole plugin

Other skills on google-skills.