
Apache Airflow: Delay a task for some period of time
Mar 5, 2019 · I am trying to execute a task after 5 minutes from the parent task inside a DAG. DAG : Task 1 ----> Wait for 5 minutes ----> Task 2 How can I achieve this in Apache Airflow? …
Refreshing dags without web server restart Apache Airflow
Apr 25, 2017 · In your airflow.cfg, you've these two configurations to control this behavior: # after how much time a new DAGs should be picked up from the filesystem …
How to enable test connection button in Airflow in v2.7.1
Feb 20, 2024 · How to enable test connection button in Airflow in v2.7.1 Asked 1 year, 8 months ago Modified 1 year, 6 months ago Viewed 8k times
Cannot find Oracle connection in Apache Airflow UI
Feb 21, 2025 · However, when I navigate to Airflow UI → Admin → Connections to add a new connection, Oracle does not appear in the connection type dropdown list. Questions: How can …
python - How to run Airflow on Windows - Stack Overflow
The usual instructions for running Airflow do not apply on a Windows environment: # airflow needs a home, ~/airflow is the default, # but you can lay foundation somewhere else if you prefer # …
Airflow 3.0.0 Docker Compose UI endlessly refreshing on external …
May 1, 2025 · Airflow 3.0.0 Docker Compose UI endlessly refreshing on external IP:port, works on localhost:8080 Asked 5 months ago Modified 5 months ago Viewed 1k times
How to import Airflow's PostgresOperator - Stack Overflow
Jan 8, 2021 · The solution was to run the following in the terminal, using the project's virtualenv: pip install 'apache-airflow[postgres]'. Please notice that it won't work if you don't wrap the …
How to install packages in Airflow (docker-compose)?
Jun 8, 2021 · The question is very similar to the one already available. The only difference is that I ran Airflow in docker Step by step: Put docker-compose.yaml to PyCharm project Put …
Airflow scheduler does not appear to be running after execute a task
Jun 13, 2021 · When there is a task running, Airflow will pop a notice saying the scheduler does not appear to be running and it kept showing until the task finished: The scheduler does not …
How to create a conditional task in Airflow - Stack Overflow
Apr 28, 2017 · I would like to create a conditional task in Airflow as described in the schema below. The expected scenario is the following: Task 1 executes If Task 1 succeed, then …