https://github.com/kohrongying/learning-airflow
https://github.com/kohrongying/learning-airflow
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kohrongying/learning-airflow
- Owner: kohrongying
- Created: 2021-11-10T10:25:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-10T10:31:15.000Z (over 3 years ago)
- Last Synced: 2025-01-27T22:14:24.574Z (4 months ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Learning Airflow
Install airflow first
# Run airflow locally
```
airflow standalone
```# Unpause dag and trigger
1) Use UI @ localhost:8080
2) Use airflow CLI
```
airflow cheat-sheet
airflow dags unpause
airflow dags trigger
airflow tasks test```
# Tips
Remove local `airflow.db` to reset database.
`airflow.cfg` Executor -- Sequential. May affect dags running.# Resources
[Operator Documentation](https://airflow.apache.org/docs/apache-airflow/stable/_api/airflow/operators/index.html)