Airflow 3 plugins let you embed FastAPI apps, React UIs, middleware, macros, operator buttons, and custom timetables directly into the Airflow process. No sidecar, no extra server.
CRITICAL: Plugin components (fastapiapps, reactapps, externalviews) require Airflow 3.1+. NEVER import flask, flaskappbuilder, or use appbuilderviews / flaskblueprints — these are Airflow 2 patterns and will not work in Airflow 3. If existing code uses them, rewrite the entire registration block using FastAPI.
Security: FastAPI plugin endpoints are not automatically protected by Airflow auth. If your endpoints need to be private, implement authentication explicitly using FastAPI's security utilities.
FastAPI 앱, 맞춤 UI 페이지, React 구성요소, 미들웨어, 매크로, 연산자 링크를 Airflow UI에 직접 포함하는 Airflow 3.1+ 플러그인을 빌드하세요. 사용자가 Airflow 플러그인 생성, Airflow에 맞춤 UI 페이지 또는 탐색 항목 추가, Airflow 내부에 FastAPI 지원 엔드포인트 구축, 플러그인에서 정적 자산 제공, Airflow UI에 React 앱 삽입, Airflow API 서버에 미들웨어 추가, 맞춤 연산자 추가 링크 생성, 플러그인 내부에서 Airflow REST API 호출을 원할 때마다 이 기술을 사용하세요. 또한 사용자가 AirflowPlugin, fastapi_apps, external_views, React_apps, 플러그인 등록 또는 Airflow 3.1+에 웹 앱 삽입을 언급하는 경우에도 트리거됩니다. 누군가 Airflow 3.1+ 내에서 Python 및 브라우저 인터페이스와 관련된 사용자 정의 항목을 구축하는 경우 이 기술이 거의 확실히 적용됩니다. 출처: astronomer/agents.