An open API service indexing awesome lists of open source software.

https://github.com/kohrongying/learning-airflow


https://github.com/kohrongying/learning-airflow

Last synced: about 2 months ago
JSON representation

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)