docker-airflow icon indicating copy to clipboard operation
docker-airflow copied to clipboard

Docker Apache Airflow

Results 108 docker-airflow issues
Sort by recently updated
recently updated
newest added

When i start airflow cluster by docker-compose-CeleryExecutor.yml, I encountered the following error when starting flower ```bash [I 210430 08:45:05 command:136] Visit me at http://0.0.0.0:5555 [I 210430 08:45:05 command:141] Broker: redis://redis:6379/1...

can´t execute the dag with another user than "airflow": dag file: operator = SparkSubmitOperator( ... ... run_as_user='root', ) error: [2018-09-16 09:30:27,083] {base_task_runner.py:98} INFO - Subtask: sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) no such table:...

hello everyone, I am trying to run [docker-compose-CeleryExecutor.yml](https://github.com/puckel/docker-airflow/blob/master/docker-compose-CeleryExecutor.yml), however, worker is not picking up job. I am seeing following message. ``` webserver_1 | [2017-06-24 02:59:43 +0000] [29] [INFO] Handling signal:...

Greetings! I have a strange behavior of scheduler. When DAGs are triggered either manually or automatically, I receive the following error: ```scheduler_1 | [2021-03-18 10:25:27,249] {celery_executor.py:264} ERROR - Error fetching...

Using the 1.10.4 airflow version I - cloned the repo - run `docker-compose -f docker-compose-LocalExecutor.yml up -d` (after changing `LOAD_EX=y`) - Everything loads up but DAGs are started but never...

Hey guys! I follow the official documentation https://airflow.apache.org/docs/apache-airflow/stable/start/docker.html I am trying to launch airflow locally using the latest image 2.0.1. But the webserver doesn't want to start. ``` airflow-webserver_1 |...

I took the docker-airflow as it is. Made two modifications. 1. I had a requirement to install airflow with MySQL support. So in Dockerfile I added libmysqlclient-dev to buildDeps and...