Doc: Airflow Note Updation (#21398)

Co-authored-by: Rounak Dhillon <rounakdhillon@Rounaks-MacBook-Air.local>
This commit is contained in:
Rounak Dhillon 2025-05-26 19:29:57 +05:30 committed by GitHub
parent baee931b85
commit 9dbf72888e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 37 additions and 1 deletions

View File

@ -141,7 +141,19 @@ with models.DAG(
{% note %}
Make sure to tune out the DAG configurations (`schedule_interval`, `start_date`, etc.) as your use case requires.
- Make sure to tune out the DAG configurations (`schedule_interval`, `start_date`, etc.) as your use case requires.
{% /note %}
{% note %}
If you encounter issues such as missing task instances or Airflow failing to locate a deployed DAG (e.g., `Dag '<DAG_ID>' could not be found`), this may be due to a **timezone mismatch** in your Airflow configuration. To resolve this, set the following in your `airflow.cfg`:
```ini
default_timezone = system
```
This ensures that Airflow uses the system timezone, which is particularly important when OpenMetadata and Airflow are running on the same server.
{% /note %}

View File

@ -145,6 +145,18 @@ Make sure to tune out the DAG configurations (`schedule_interval`, `start_date`,
{% /note %}
{% note %}
If you encounter issues such as missing task instances or Airflow failing to locate a deployed DAG (e.g., `Dag '<DAG_ID>' could not be found`), this may be due to a **timezone mismatch** in your Airflow configuration. To resolve this, set the following in your `airflow.cfg`:
```ini
default_timezone = system
```
This ensures that Airflow uses the system timezone, which is particularly important when OpenMetadata and Airflow are running on the same server.
{% /note %}
### Key Notes
- **Image Version**: Ensure the Docker image version matches your OpenMetadata server version (e.g., `openmetadata/ingestion-base:0.13.2`).

View File

@ -145,6 +145,18 @@ Make sure to tune out the DAG configurations (`schedule_interval`, `start_date`,
{% /note %}
{% note %}
If you encounter issues such as missing task instances or Airflow failing to locate a deployed DAG (e.g., `Dag '<DAG_ID>' could not be found`), this may be due to a **timezone mismatch** in your Airflow configuration. To resolve this, set the following in your `airflow.cfg`:
```ini
default_timezone = system
```
This ensures that Airflow uses the system timezone, which is particularly important when OpenMetadata and Airflow are running on the same server.
{% /note %}
### Key Notes
- **Image Version**: Ensure the Docker image version matches your OpenMetadata server version (e.g., `openmetadata/ingestion-base:0.13.2`).