incubator-airflow/README.md

50 строки
2.3 KiB
Markdown
Исходник Обычный вид История

2015-07-22 03:45:33 +03:00
# Airflow
2014-10-07 01:29:38 +04:00
2015-07-22 03:45:33 +03:00
Airflow is a platform to programmatically author, schedule and monitor
data pipelines.
2015-08-19 18:51:30 +03:00
When workflows are defined as code, they becomes more maintainable,
versionable, testable, and collaborative.
2015-07-22 03:45:33 +03:00
![img] (http://i.imgur.com/6Gs4hxT.gif)
Use Airflow to author workflows as directed acyclic graphs (DAGs) of tasks.
The Airflow scheduler executes your tasks on an array of workers while
following the specified dependencies. Rich command line utilities make
performing complex surgeries on DAGs a snap. The rich user interface
makes it easy to visualize pipelines running in production,
monitor progress, and troubleshoot issues when needed.
## Principles
- **Dynamic**: Airflow pipelines are configuration as code (Python), allowing for dynamic pipeline generation. This allows for writing code that instantiates pipelines dynamically.
- **Extensible**: Easily define your own operators, executors and extend the library so that it fits the level of abstraction that suits your environment.
- **Elegant**: Airflow pipelines are lean and explicit. Parameterizing your scripts is built into the core of Airflow using the powerful **Jinja** templating engine.
- **Scalable**: Airflow has a modular architecture and uses a message queue to orchestrate an arbitrary number of workers. Airflow is ready to scale to infinity.
## Who uses Airflow?
As the Airflow community grows, we'd like to keep track of who is using
the platform. Please send a PR with your company name and @githubhandle
if you may.
2015-08-19 19:12:11 +03:00
Currently **officialy** using Airflow:
2015-07-22 03:45:33 +03:00
* Airbnb [@mistercrunch]
* Agari [@r39132]
2015-08-01 03:26:10 +03:00
* [Cotap](https://github.com/cotap/) [[@maraca](https://github.com/maraca) & [@richardchew](https://github.com/richardchew)]
2015-07-24 08:07:56 +03:00
* Lyft
2015-07-26 23:04:42 +03:00
* Stripe [@jbalogh]
* Wooga
2015-08-14 21:07:22 +03:00
* Xoom [[@gepser](https://github.com/gepser) & [@omarvides](https://github.com/omarvides)]
2015-07-24 08:07:56 +03:00
* Yahoo!
* [Jampp](https://github.com/jampphq)
2015-07-22 04:02:15 +03:00
2015-08-19 18:51:30 +03:00
## Links
2015-07-22 04:02:15 +03:00
2015-08-19 18:51:30 +03:00
* [Full documentation on pythonhosted.com](http://pythonhosted.org/airflow/)
* [Airflow Google Group (mailing list / forum)](https://groups.google.com/forum/#!forum/airbnb_airflow)
* [Airbnb Blog Post about Airflow](http://nerds.airbnb.com/airflow/)
* [Hadoop Summit Airflow Video](https://www.youtube.com/watch?v=oYp49mBwH60)
2015-08-24 21:34:47 +03:00
* [Docker Airflow (externally maintained)](https://github.com/puckel/docker-airflow)