Expand description
The DataFusion-specific context-provider seam.
The context data (LineageContext) and its environment conventions live
in openlineage_client; this module adds the DataFusion-flavored
LineageContextProvider trait, whose context
method receives the query’s SessionState. A different engine would define
its own provider over its own request type.
Structs§
- Lineage
Context - Top-level context an integration contributes to each emitted run.
- Static
Context Provider - Returns a fixed
LineageContextfor every query. UseStaticContextProvider::default()for callers with no orchestration context.
Traits§
- Lineage
Context Provider - Supplies per-query
LineageContext. Implemented by the host integration.