Apache Airflow (Incubating)
Перейти к файлу
Ash Berlin-Taylor a6b23a36e0 [AIRFLOW-1594] Don't install test packages into python root.[]
By default `find_packages()` will find _any_ valid
python package,
including things under tests. We don't want to
install the tests
packages into the python path, so exclude those.

Closes #2597 from ashb/AIRFLOW-1594-dont-install-
tests
2017-09-13 10:11:39 +02:00
.github [AIRFLOW-995] Remove reference to actual Airflow issue 2017-03-17 15:55:56 -04:00
airflow [AIRFLOW-1582] Improve logging within Airflow 2017-09-13 09:36:58 +02:00
dags [Airflow 1332] Split logs based on try number 2017-07-20 18:08:18 -07:00
dev [AIRFLOW-XXX] Save username and password in airflow-pr 2017-09-11 15:19:58 +02:00
docs [AIRFLOW-950] Missing AWS integrations on documentation::integrations 2017-09-11 15:03:40 +02:00
licenses [AIRFLOW-1291] Update NOTICE and LICENSE files to match ASF requirements 2017-06-12 10:47:56 -07:00
scripts [AIRFLOW-1324] Generalize Druid operator and hook 2017-08-18 21:34:03 +02:00
tests [AIRFLOW-1582] Improve logging within Airflow 2017-09-13 09:36:58 +02:00
.codecov.yml [AIRFLOW-248] Add Apache license header to all files 2016-06-21 08:15:42 -07:00
.coveragerc Do not use migrations in coverage 2016-09-13 23:29:13 +02:00
.editorconfig Add Apache 2 License 2017-03-10 22:49:33 -08:00
.gitignore AIRFLOW-959 Cleanup and reorganize .gitignore 2017-03-09 11:37:49 -08:00
.landscape.yml [AIRFLOW-580] Prevent landscape warning on .format 2016-10-27 00:26:29 -07:00
.rat-excludes [AIRFLOW-1476] add INSTALL instruction for source releases 2017-09-11 15:23:29 +02:00
.readthedocs.yml [AIRFLOW-956] Get docs working on readthedocs.org 2017-03-08 19:42:29 -08:00
.travis.yml [AIRFLOW-219][AIRFLOW-398] Cgroups + impersonation 2017-01-18 18:11:06 -08:00
CHANGELOG.txt [AIRFLOW-XXX] 1.8.2 release notes 2017-09-11 13:29:54 +02:00
CONTRIBUTING.md [AIRFLOW-641] Improve pull request instructions 2016-12-25 14:40:46 +01:00
DISCLAIMER Dropping .txt etension on repo's root files 2016-08-31 13:09:01 -07:00
INSTALL [AIRFLOW-1476] add INSTALL instruction for source releases 2017-09-11 15:23:29 +02:00
LICENSE [AIRFLOW-1291] Update NOTICE and LICENSE files to match ASF requirements 2017-06-12 10:47:56 -07:00
MANIFEST.in [AIRFLOW-1006] Add config_templates to MANIFEST 2017-03-20 23:48:08 -04:00
NOTICE [AIRFLOW-1291] Update NOTICE and LICENSE files to match ASF requirements 2017-06-12 10:47:56 -07:00
README.md [AIRFLOW-1572] add carbonite to company list 2017-09-06 16:51:34 -07:00
TODO.md [AIRFLOW-112] no-op README change to close this jira's PR 2016-05-13 14:57:01 -07:00
UPDATING.md [AIRFLOW-1582] Improve logging within Airflow 2017-09-13 09:36:58 +02:00
init.sh [AIRFLOW-248] Add Apache license header to all files 2016-06-21 08:15:42 -07:00
migrations.sql [AIRFLOW-248] Add Apache license header to all files 2016-06-21 08:15:42 -07:00
run_tox.sh [AIRFLOW-248] Add Apache license header to all files 2016-06-21 08:15:42 -07:00
run_unit_tests.sh [AIRFLOW-911] Add coloring and timing to tests 2017-02-25 22:10:14 +01:00
setup.cfg [AIRFLOW-997] Update setup.cfg to point to Apache 2017-03-16 13:35:13 -07:00
setup.py [AIRFLOW-1594] Don't install test packages into python root.[] 2017-09-13 10:11:39 +02:00
tox.ini [AIRFLOW-489] Add API Framework 2016-11-27 19:44:31 +01:00

README.md

Airflow

PyPI version Build Status Coverage Status Code Health Requirements Status Documentation Join the chat at https://gitter.im/apache/incubator-airflow

NOTE: The transition from 1.8.0 (or before) to 1.8.1 (or after) requires uninstalling Airflow before installing the new version. The package name was changed from airflow to apache-airflow as of version 1.8.1.

Airflow is a platform to programmatically author, schedule and monitor workflows.

When workflows are defined as code, they become more maintainable, versionable, testable, and collaborative.

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.

Getting started

Please visit the Airflow Platform documentation for help with installing Airflow, getting a quick start, or a more complete tutorial.

For further information, please visit the Airflow Wiki.

Beyond the Horizon

Airflow is not a data streaming solution. Tasks do not move data from one to the other (though tasks can exchange metadata!). Airflow is not in the Spark Streaming or Storm space, it is more comparable to Oozie or Azkaban.

Workflows are expected to be mostly static or slowly changing. You can think of the structure of the tasks in your workflow as slightly more dynamic than a database structure would be. Airflow workflows are expected to look similar from a run to the next, this allows for clarity around unit of work and continuity.

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.

User Interface

  • DAGs: Overview of all DAGs in your environment.

  • Tree View: Tree representation of a DAG that spans across time.

  • Graph View: Visualization of a DAG's dependencies and their current status for a specific run.

  • Task Duration: Total time spent on different tasks over time.

  • Gantt View: Duration and overlap of a DAG.

  • Code View: Quick way to view source code of a DAG.

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.

Committers:

Currently officially using Airflow:

  1. Airbnb [@mistercrunch, @artwr]
  2. Agari [@r39132]
  3. allegro.pl [@kretes]
  4. AltX [@pedromduarte]
  5. Apigee [@btallman]
  6. ARGO Labs [California Data Collaborative]
  7. Astronomer [@schnie]
  8. Auth0 [@sicarul]
  9. BandwidthX [@dineshdsharma]
  10. Bellhops
  11. BlaBlaCar [@puckel & @wmorin]
  12. Bloc [@dpaola2]
  13. BlueApron [@jasonjho & @matthewdavidhauser]
  14. Blue Yonder [@blue-yonder]
  15. California Data Collaborative powered by ARGO Labs
  16. Carbonite [@ajbosco]
  17. Celect [@superdosh & @chadcelect]
  18. Change.org [@change, @vijaykramesh]
  19. Checkr [@tongboh]
  20. Children's Hospital of Philadelphia Division of Genomic Diagnostics [@genomics-geek]
  21. City of San Diego [@MrMaksimize, @andrell81 & @arnaudvedy]
  22. Clairvoyant @shekharv
  23. Clover Health [@gwax & @vansivallab]
  24. Chartboost [@cgelman & @dclubb]
  25. ContaAzul [@bern4rdelli, @renanleme & @sabino]
  26. Cotap [@maraca & @richardchew]
  27. CreditCards.com[@vmAggies & @jay-wallaby]
  28. Credit Karma [@preete-dixit-ck & @harish-gaggar-ck & @greg-finley-ck]
  29. DataFox [@sudowork]
  30. Digital First Media [@duffn & @mschmo & @seanmuth]
  31. Drivy [@AntoineAugusti]
  32. Easy Taxi [@caique-lima & @WesleyBatista]
  33. eRevalue [@hamedhsn]
  34. evo.company [@orhideous]
  35. FreshBooks [@DinoCow]
  36. Gentner Lab [@neuromusic]
  37. Glassdoor [@syvineckruyk]
  38. GovTech GDS [@chrissng & @datagovsg]
  39. Grand Rounds [@richddr, @timz1290 & @wenever]
  40. Groupalia [@jesusfcr]
  41. Gusto [@frankhsu]
  42. Handshake [@mhickman]
  43. Handy [@marcintustin / @mtustin-handy]
  44. HBO[@yiwang]
  45. HelloFresh [@tammymendt & @davidsbatista & @iuriinedostup]
  46. Holimetrix [@thibault-ketterer]
  47. Hootsuite
  48. IFTTT [@apurvajoshi]
  49. iHeartRadio[@yiwang]
  50. imgix [@dclubb]
  51. ING
  52. Jampp
  53. Kiwi.com [@underyx]
  54. Kogan.com [@geeknam]
  55. Lemann Foundation [@fernandosjp]
  56. LendUp [@lendup]
  57. LetsBonus [@jesusfcr & @OpringaoDoTurno]
  58. liligo [@tromika]
  59. LingoChamp [@haitaoyao]
  60. Lucid [@jbrownlucid & @kkourtchikov]
  61. Lumos Labs [@rfroetscher & @zzztimbo]
  62. Lyft[@SaurabhBajaj]
  63. Madrone [@mbreining & @scotthb]
  64. Markovian [@al-xv, @skogsbaeck, @waltherg]
  65. Mercadoni [@demorenoc]
  66. Mercari [@yu-iskw]
  67. MiNODES [@dice89, @diazcelsa]
  68. MFG Labs
  69. mytaxi [@mytaxi]
  70. Nerdwallet
  71. New Relic [@marcweil]
  72. Nextdoor [@SivaPandeti, @zshapiro & @jthomas123]
  73. OfferUp
  74. OneFineStay [@slangwald]
  75. Open Knowledge International @vitorbaptista
  76. Pandora Media [@Acehaidrey]
  77. PayPal [@r39132 & @jhsenjaliya]
  78. Postmates [@syeoryn]
  79. Pronto Tools [@zkan & @mesodiar]
  80. Qubole [@msumit]
  81. Quora
  82. Robinhood [@vineet-rh]
  83. Scaleway [@kdeldycke]
  84. Sense360 [@kamilmroczek]
  85. Shopkick [@shopkick]
  86. Sidecar [@getsidecar]
  87. SimilarWeb [@similarweb]
  88. SmartNews [@takus]
  89. Spotify [@znichols]
  90. Stackspace
  91. Stripe [@jbalogh]
  92. Tails.com [@alanmcruickshank]
  93. Thumbtack [@natekupp]
  94. Tictail
  95. T2 Systems [@unclaimedpants]
  96. United Airlines [@ilopezfr]
  97. Vente-Exclusive.com [@alexvanboxel]
  98. Vnomics [@lpalum]
  99. WePay [@criccomini & @mtagle]
  100. WeTransfer [@jochem]
  101. Whistle Labs [@ananya77041]
  102. WiseBanyan
  103. Wooga
  104. Xoom [@gepser & @omarvides]
  105. Yahoo!
  106. Zapier [@drknexus & @statwonk]
  107. Zendesk
  108. Zenly [@cerisier & @jbdalido]
  109. Zymergen
  110. 99 [@fbenevides, @gustavoamigo & @mmmaia]