DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
Status
| State | Accepted |
| Discussion Thread | https://lists.apache.org/thread/dgpgvoszh52vxxszmg65wmcgxnj9zwby |
| Vote Thread | https://lists.apache.org/thread/vhy4bynwmqvrxw0cqgwkvmx6vhlzbqnr |
| Vote Result Thread | https://lists.apache.org/thread/7g2gw53lf9yf8mmt9g6mnf29rj2yzgpr |
| Progress Tracking (PR/GitHub Project/Issue Label) | https://github.com/orgs/apache/projects/586/views/1 |
| Date Created |
|
| Version Released | |
| Authors |
Background & Motivation
In today's evolving data landscape, organizations face significant challenges:
- Schema Drift Detection: Breaking changes between upstream and downstream systems consume significant engineering time
- Multi-Cloud Complexity: Data scattered across AWS, GCP, Azure with different formats (Iceberg, Delta Lake, Parquet, PostgreSQL, etc.)
- Data Quality at Scale: Context-aware validation that understands business rules, not just syntax
- AI Context Requirements: Providing accurate data context to AI/ML models and agents for reliable insights
Real-World Pain Points:
- Schema mismatches between producers and consumers causing pipeline failures
- Manual data quality checks that don't scale with data volume or complexity
- Fragmented tooling for accessing data across cloud providers and storage formats
- Lack of intelligent validation that understands business context
This proposal leverages Airflow's strengths (production reliability, 1000+ integrations, governance) while adding AI-native capabilities for intelligent data operations.
Core Proposal: Specialized LLM Operators with Rich Context Integration
Based on Pydantic AI's capabilities, while it provides excellent agent framework, multi-model support, and structured outputs, it lacks:
- Airflow Production Integration: No native connection management, XCom, DAG context, or retry logic
- Context-Aware Safety: No built-in protection against dangerous SQL operations or file modifications
- Automatic Context Injection: No integration with Airflow's 500+ hooks for schema/metadata discovery
- Workflow-Native Features: No approval workflows, asset integration, or Airflow monitoring
An example view of how Operators look like below:
1. Specialized LLM Operators with Built-in Protection & Context
2. Task Decorators for Dynamic AI Workflows
Each LLM operator has a corresponding decorator for more flexible, Pythonic workflows:
Benefits of Decorator Approach:
- Dynamic prompts based on runtime conditions
- Custom pre-processing logic before LLM calls
- Context enrichment from external systems
- Conditional logic for different scenarios
- Pythonic workflow familiar to Airflow users
- Full XCom integration for passing data between tasks
3. Rich Context Injection Examples
SQL Operator Context (via DbApiHook integration):
3. Operator-Specific Safety & System Prompts
SQL Operator Built-in Protection:
SAFETY RULES:
- NEVER generate DROP, TRUNCATE, DELETE without WHERE, or ALTER statements
- Always use proper JOIN syntax for this database type
- Respect column types and constraints provided in schema
- Use database-specific functions when available
CONTEXT: You have access to schema info, sample data, and dialect features.
Generate optimized, safe queries that work with {database_type} version {version}."""
File Operator Built-in Protection:
SAFETY RULES:
- ONLY read and analyze files, NEVER modify or delete
- Respect file size limits and memory constraints
- Generate efficient queries for large datasets
CONTEXT: File has {estimated_rows} rows, {file_size_mb}MB, partitioned by {partitioning}."""
4. Schema Comparison with Multi-Database Context
# Cross-system schema drift detection
schema_drift = LLMSchemaCompareOperator(
task_id="detect_schema_drift",
data_sources=[customer_s3, customer_postgres, customer_snowflake],
prompt="Identify schema mismatches that would break data loading between systems",
# Automatically gets context from each system:
# - S3: Parquet schema, partitioning, file stats
# - PostgreSQL: Table schema, constraints, indexes
# - Snowflake: Column types, clustering keys, data sharing info
)
5. Unified Data Access with Apache DataFusion
A new AnalyticsOperator that provides unified access to multi-cloud data:
from airflow.providers.ai.operators import AnalyticsOperator
# Execute queries across different storage systems uniformly
analytics_task = AnalyticsOperator(
task_id="cross_cloud_analysis",
query="{{ ti.xcom_pull(task_ids='quality_check') }}", # LLM-generated query
data_sources=[customer_s3, orders_gcs, inventory_azure], # Multi-cloud
engine="datafusion", # High-performance query engine
output_format="parquet",
output_location="s3://results/analysis/"
)
Why Apache DataFusion for AI Workloads:
Based on Wren AI's experience, DataFusion provides significant advantages for AI-driven data analysis:
- Exceptional Performance: Query and perform aggregation operations on approximately 50 million records in under 10-15 seconds on single-node operations
- Multi-Cloud Native: Built-in support for S3, GCS, Azure Blob Storage without additional configuration
- Multi-Format Support: Native handling of Parquet, JSON, CSV, Avro, Iceberg, Delta Lake formats
- Cost Effective: Eliminates need for expensive distributed compute frameworks like Spark for many AI use cases
- SQL Dialect Unification: Provides unified SQL interface across different storage systems, crucial for AI agents
- Rust Performance: High-performance query engine optimized for the analytical workloads AI agents typically generate
6. Human-in-the-Loop Integration Options
We propose both embedded and separate HITL patterns:
Option A: Embedded HITL
(Out of scope this scenario moving this to New AIP)
Option B: Separate HITL Steps
Complete Workflow Example
Here's a real-world scenario combining all components:
Evolution Path: From LLMOperator to AITask
While we start with SQL generation, the architecture supports broader AI workflows:
# Future: General AI task abstraction
process_customer_churn = AITask(
task_id="analyze_churn_patterns",
objective="Identify customers at risk of churning and recommend actions",
resources={
"customer_data": snowflake_conn,
"email_system": sendgrid_conn,
"ml_platform": sagemaker_conn
},
constraints={"budget": "$50", "privacy": "pii_protected"},
output_model=ChurnAnalysisReport
)
Technical Implementation Details
Core Components
- Specialized LLM Operators & Decorators
- LLMSQLQueryOperator / @task.llm_sql_query: Natural language to SQL generation
- LLMSchemaCompareOperator / @task.llm_schema_compare: Schema drift detection between systems
- LLMDataQualityOperator / @task.llm_data_quality: Context-aware data validation query generation
- LLMFileAnalysisOperator / @task.llm_file_analysis: File content analysis and processing
Decorator Benefits:
- Dynamic prompt generation based on runtime conditions
- Custom pre-processing logic before LLM calls
- Context enrichment from external systems (business rules, calendars, alerts)
- Conditional logic for different operational scenarios
Enhanced Asset System
# Proposed Asset structure evolution
class Asset:
name: str
uri: str
conn_id: Optional[str] = None # Direct connection reference
schema: Optional[Dict[str, str]] = None # Structured schema
sensitivity: Optional[str] = None # pii, sensitive, public
format: Optional[str] = None # parquet, json, csv, etc.
statistics: Optional[Dict] = None # Row counts, update times
extra: Dict[str, Any] = field(default_factory=dict) # Backward compatibility
AnalyticsOperator with DataFusion
- Unified interface for multi-cloud data access across S3, GCS, Azure Blob Storage
- Native handling of Parquet, Iceberg, Delta Lake, JSON, CSV, Avro formats
- High-performance processing: 50M+ records in 10-15 seconds on single node(This is from my experiments)
- Cost-effective alternative to Spark for AI-generated analytical queries
- SQL dialect unification - write once, run anywhere
- DataFusion table provider supports integrating existing databases like sqlite, postgres. A good option here is using datafusion-table-providers. https://github.com/datafusion-contrib/datafusion-table-providers
Flexible HITL Integration
- Embedded approval within operators (require_approval=True)
- Separate ApprovalOperator with query modification capabilities
- Configurable timeout and escalation policies
Implementation Approach
Phase 1: Standalone Provider - No Core Changes Required
- Provider: apache-airflow-providers-ai (0.x releases for iteration)
- Core LLM operators with Pydantic AI integration
- Schema detection using existing connection types and hooks (no core modifications needed)
- DataFusion-based AnalyticsOperator for unified data access ( Users can extend this interface and provide their own implementation for querying if they don't prefer datafusion, eg use; duckdb)
- Asset integration using current Asset.extra for metadata (backward compatible)
- Validations: Query validation and safety analysis
Key Benefit: Can iterate rapidly on operator design and context injection without any core Airflow changes. All functionality works through existing connection and hook infrastructure.
Phase 2: Production Features
- Advanced HITL workflows with modification capabilities
- Performance optimization and caching
- Enhanced Asset metadata (if community feedback supports core changes)
Phase 3: Core Integration
- Only if Phase 1 proves valuable: Consider core Asset enhancements
- Provider-specific AI capabilities in existing providers
- Community tool ecosystem and standards
Why This Matters
For Airflow:
- Positions Airflow at the center of AI-powered data infrastructure
- Makes Airflow more data-aware: Enhanced Asset metadata creates richer data context and lineage
- Drives Asset adoption: Users get immediate value from defining Assets with schema and sensitivity metadata
- Leverages our unique strengths in production reliability and 1000+ provider ecosystem
For Users:
- Democratizes data access - business users describe intent in natural language
- Data engineers maintain governance, reliability, and safety through built-in protections
- Rich data context: Assets become intelligent, carrying schema, business rules, and sensitivity information
For the Industry: Creates the missing bridge between AI capabilities and production data infrastructure while making data assets first-class citizens in AI workflows.
Conclusion:
Overall the proposal is to build LLM's based operators by leveraging the built in airflow connections and assets functionality
Are there any downsides to this change?
None
Which users are affected by the change?
None
What defines this AIP as "done"?
By completing all the phases
Future Scope:
- Embedded HITL as mentioned in the Option A example.
- Progress reporting the task running in cycliness, eg: see comment from Unknown User (potiuk)
14 Comments
Unknown User (jscheffl)
Dec 28, 2025I like the AIP and proposal very much.
Though I am not convinced (as comments above) that it (1) makes sense to embed HITL into the operators itself (would make them non atomic whereas we have existing atomic operators that can be wired in a Dag already) and (2) making extensions to Assets whereas this can be made into the extras dict - maybe we should then rather standardize the dict elements instead of adding more attributes to the Asset directly.
With concerns ^^^applied it would be fully a provider package and flexible to implement and iterate.
Pavan Kumar
Dec 29, 2025Thank you.
for the:
(2): agree , if we define proper schema for LLM that would be better structured instead of putting everything in the extras
Unknown User (potiuk)
Dec 28, 2025After thinking quite a bit about the proposal, I actually love it and I think that should be next frontier of making Airflow abstractions more approachable and usable by those who want to implement various patterns of interacting with LLMS.
And I have a little different opinion than Jens regarding HITL. I see those common LLM operators as slightly "higher" level operators that might implement a set of common LLM-related patterns that are currently either difficult or impossible to express via putting together things via Dag and individual tasks. In this sense, the capability of making HITL call-out for approval or selection from within such an operator - without completing the operator and even running those "call-outs" more than once, actually even unbounded number of times during a single operator's execution.
Actually it's a great way for us to implement some "cyclicness" - without breaking the "acyclic" property of our Dags (for now at least). Making Dag "cyclic" is quite a dramatic change, and possibly we do not even have to do it, because the "cyclic" part can be likely encompassed within the specialized LLM operators. I can imagine an operator that performs LLM querying and refining it via additional interactions with LLMs "internally" - during a single operator's execution. And some of those iterations might result in HITL "call-out" - even multiple times during one execution.
Also one more proposal I have here is to use an API similar to HITL (or maybe repurpose HITL for that) - to report PROGRESS of such a task. This is the typical property of good LLM task that it provides some feedback to the user - it might be HITL when it asks for something but also it might be HOOTL (Human Outside Of The Loop) - where the task is simply reporting it's progress and allows the user to perform asynchronous actions based on that progress → for example abort the execution (to stop the Dag) or mark it as "skipped" (to trigger - skip processing path), or mark it as "success" to simulate things being completed when they are not. While the three "async" operations we already have, we do not currently have "progress" targeted for the kind of actor who is also HITL "actor" - someone who is not interested in detailed logs, but rather want to monitor progress and assess quality of the output - even if it is just a partial output in the iterative process).
I think that it will be easier and much more "surgical" (and applied in the right place) to embed this "iterative" feedback / progress than to modify the "acyclic" property into our Dags.
Also - this kind of Progress interface can also be used to publish the "async" tasks progress as the next step of AIP-98: Add async support for PythonOperator in Airflow 3 that we discussed with Unknown User (dabla)
Unknown User (jscheffl)
Dec 28, 2025I see your point and there might be a far wider scope if non-cycling processing and progress should come into play. But this is way above the (here proposed) scope of this AIP. And where I see usages and use cases as well I'd propose to make this into a separate AIP - even though being related. Because this widens scope and complexity by factor 3 at least.
From the AIP proposals I see no immediate need of cycling things on top of the HITL mentioned.
Unknown User (potiuk)
Dec 28, 2025I think it could be split into two AIPs, yes. My point was mainly to illustrate why HITL "embedded" makes a lot of sense in the context of LLM operations. Kind of bigger picture - and if we agree that the bigger picture is something we want to get to, this could be seen as a first step in this direction and followed by another AIP
Pavan Kumar
Dec 29, 2025Agree on both of your points.. i am happy to defer to separate AIP to embed HITL inside operators. i thought its much more usable if we implement part of this. instead of asking users to add extra HITL step validate the LLM Task output..
Pavan Kumar
Dec 29, 2025Thanks Unknown User (potiuk) yes my idea was also similar what ever LLM generates something (eg: sql queries) whether its in multiple loops or single, if user wants validate it, the operator can emit event before executing those . and possibly here an another LLM task( LLMQueryValidationSensor) also can validate those queries.. and respond to HITL event or a HUMAN can respond to that event.
Unknown User (vikramkoka)
Jan 14, 2026Great work here.
I really like the level of detail on this and especially love the sample code!
I strongly believe that we should focus only do the Phase 1 here to start this.
I.e. do this as a provider, iterate quickly, and validate, before even attempting to put this into Core Airflow.
Pavan Kumar
Jan 15, 2026Thank you vikram, Yes this is totally provider changes, no core changes involved in phase 1.
Unknown User (amoghdesai)
Jan 16, 2026Unknown User (amoghdesai)
Jan 16, 2026Pavan Kumar
Jan 17, 2026yeah may be i am mistake here.. :)
Unknown User (amoghdesai)
Jan 16, 2026It's a nice read. I appreciate the amount of market research done in identifying the gaps that Airflow has and trying to integrate them into Airflow to prepare Airflow better for the AI era to come.
I concur with Vikram about having to start with Phase 1, iterate, observe how the community and users consume it and work towards making it even more robust by the time we decide to make improvements
to core airflow.
I have some thoughts on the current interfaces. Most interfaces accept raw text for
prompts, we should likely have some guardrails in place on that one. I would in fact suggest a few things (feel free to disagree with me):Pavan Kumar
Jan 17, 20261 > Yes, we could design a prompt structure to define how this would work. I’ll explore what’s possible. If these operators gain more adoption, we could also support an MD-based file structure so users can submit their inputs that way
2 > For data quality operators, the prompts would primarily drive SQL generation based on the validations users want to perform. While data quality frameworks can support an arbitrary number of rules on any dataset, the key idea here is capturing which rules the user actually wants to validate
For example:
Validate that
cust_idhas corresponding records in theproducttable.Validate that the
pricecolumn is never zero across all products.Users would express these requirements in a prompt, from which we generate the necessary queries, translate them into internal data quality rules, execute them, and then validate the results.
Hope this makes sense.