https://github.com/eocode/airflow
repository-with-airflow-implementation
https://github.com/eocode/airflow
airflow celery python software-engineering
Last synced: 6 months ago
JSON representation
repository-with-airflow-implementation
- Host: GitHub
- URL: https://github.com/eocode/airflow
- Owner: eocode
- Created: 2022-12-08T04:02:44.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T04:33:33.000Z (about 3 years ago)
- Last Synced: 2025-03-31T07:34:11.366Z (9 months ago)
- Topics: airflow, celery, python, software-engineering
- Homepage:
- Size: 69.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Create VENV
```cmd
python -m venv env
```
```cmd
# .env file
AIRFLOW_UID=1000
AIRFLOW_GID=0
```
Install airflow
```cmd
pip install "apache-airflow[celery]==2.4.3" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.4.3/constraints-3.7.txt"
```
Manage commands
```cmd
docker exec -it airflow_airflow-worker_1 bash
```
Test a task
```cmd
airflow tasks test process_user create_table 2022-11-29
```
Configurations
airflow.cfg
```
airflow config get-value core sql_alchemy
```
```
airflow config get-value core executor
```