Docs: Airflow Configuration Note Updation (#22817)

This commit is contained in:
Rounak Dhillon 2025-08-07 16:29:13 +05:30 committed by GitHub
parent 30b5634522
commit bb4bbefee6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 37 additions and 2 deletions

View File

@ -179,6 +179,17 @@ The `entity` key needs to be informed as follows for each of the entity types:
- SearchIndex: `searchIndex` - SearchIndex: `searchIndex`
- MlModel: `mlmodel` - MlModel: `mlmodel`
{% note %}
When configuring Airflow lineage without the `openmetadata-ingestion package`, **only table entities** are supported using the simplified format:
```python
inlets = [{"tables": ["service.db.schema.table"]}]
```
- Dashboards, topics, and other non-table entities are not supported in this format.
- To use those, you must use the full `OMEntity` format, which requires the `openmetadata-ingestion package`.
{% /note %}
## Configuring Lineage between Tables ## Configuring Lineage between Tables

View File

@ -1,5 +1,6 @@
--- ---
title: Configuring DAG Lineage title: Configuring DAG Lineage in Airflow | `brandName` Integration
description: Learn how to configure DAG lineage in Airflow using inlets and outlets. Supports tables, dashboards, pipelines, and more with or without ingestion packages.
slug: /connectors/pipeline/airflow/configuring-lineage slug: /connectors/pipeline/airflow/configuring-lineage
--- ---
@ -179,6 +180,17 @@ The `entity` key needs to be informed as follows for each of the entity types:
- SearchIndex: `searchIndex` - SearchIndex: `searchIndex`
- MlModel: `mlmodel` - MlModel: `mlmodel`
{% note %}
When configuring Airflow lineage without the `openmetadata-ingestion package`, **only table entities** are supported using the simplified format:
```python
inlets = [{"tables": ["service.db.schema.table"]}]
```
- Dashboards, topics, and other non-table entities are not supported in this format.
- To use those, you must use the full `OMEntity` format, which requires the `openmetadata-ingestion package`.
{% /note %}
## Configuring Lineage between Tables ## Configuring Lineage between Tables

View File

@ -1,5 +1,6 @@
--- ---
title: Configuring DAG Lineage title: Configuring DAG Lineage in Airflow | `brandName` Integration
description: Learn how to configure DAG lineage in Airflow using inlets and outlets. Supports tables, dashboards, pipelines, and more with or without ingestion packages.
slug: /connectors/pipeline/airflow/configuring-lineage slug: /connectors/pipeline/airflow/configuring-lineage
--- ---
@ -179,6 +180,17 @@ The `entity` key needs to be informed as follows for each of the entity types:
- SearchIndex: `searchIndex` - SearchIndex: `searchIndex`
- MlModel: `mlmodel` - MlModel: `mlmodel`
{% note %}
When configuring Airflow lineage without the `openmetadata-ingestion package`, **only table entities** are supported using the simplified format:
```python
inlets = [{"tables": ["service.db.schema.table"]}]
```
- Dashboards, topics, and other non-table entities are not supported in this format.
- To use those, you must use the full `OMEntity` format, which requires the `openmetadata-ingestion package`.
{% /note %}
## Configuring Lineage between Tables ## Configuring Lineage between Tables