Apache Airflow (Incubating)
Перейти к файлу
Elliott Shugerman 54e07d5508 [AIRFLOW-4929] Pretty print JSON Variables in UI (#5573)
- serialize JSON variables with newlines and indentation
- use monospace font family for `val` textarea
- set height of `val` textarea dynamically
2019-07-16 10:34:50 +01:00
.github [AIRFLOW-XXX] Add .github/SECURITY.md (#5329) 2019-06-06 09:33:54 +01:00
airflow [AIRFLOW-4929] Pretty print JSON Variables in UI (#5573) 2019-07-16 10:34:50 +01:00
dags [AIRFLOW-2918] Fix Flake8 violations (#3772) 2018-08-20 23:44:36 +01:00
dev [AIRFLOW-4198] Remove all try/import compatibility imports (#5091) 2019-05-05 22:27:26 +02:00
docs [AIRFLOW-XXX] Disable intersphinx loading of `requests` modules (#5590) 2019-07-15 13:23:41 +01:00
hooks [AIRFLOW-4755] Fixed default DOCKERHUB_USER (#5397) 2019-06-10 08:52:23 +02:00
licenses [AIRFLOW-3697] Vendorize nvd3 and slugify 2019-02-23 18:30:17 +00:00
scripts [AIRFLOW-4945] Use super() syntax (#5579) 2019-07-13 21:11:11 +02:00
tests [AIRFLOW-4929] Pretty print JSON Variables in UI (#5573) 2019-07-16 10:34:50 +01:00
.coveragerc [AIRFLOW-XXX] Omit vendor packages from being covered by codecov (#5013) 2019-04-08 11:16:27 +02:00
.dockerignore [AIRFLOW-4115] Multi-staging Aiflow Docker image (#4936) 2019-04-13 15:03:02 +02:00
.editorconfig [AIRFLOW-2287] Fix incorrect ASF headers 2018-04-14 09:13:23 +02:00
.flake8 [AIRFLOW-4905] Add colours to flake8 output (#5541) 2019-07-11 14:06:44 +01:00
.gitignore [AIRFLOW-3811] automatic generation of API Reference in docs (#4788) 2019-03-26 18:06:14 +00:00
.hadolint.yaml [AIRFLOW-4115] Multi-staging Aiflow Docker image (#4936) 2019-04-13 15:03:02 +02:00
.rat-excludes [AIRFLOW-4364] Add Pylint to CI (#5238) 2019-05-30 22:02:09 +02:00
.readthedocs.yml [AIRFLOW-XXX] Use Py3.7 on readthedocs (#5078) 2019-04-10 18:01:56 +01:00
.travis.yml [AIRFLOW-4364] Add Pylint to CI (#5238) 2019-05-30 22:02:09 +02:00
CHANGELOG.txt [AIRFLOW-4446] Fix typos (#5217) 2019-04-30 21:12:32 +01:00
CONTRIBUTING.md [AIRFLOW-4364] Add Pylint to CI (#5238) 2019-05-30 22:02:09 +02:00
Dockerfile [AIRFLOW-4116] Dockerfile now supports CI image build on DockerHub (#4937) 2019-06-09 07:58:58 -07:00
Dockerfile-context [AIRFLOW-4116] Dockerfile now supports CI image build on DockerHub (#4937) 2019-06-09 07:58:58 -07:00
INSTALL [AIRFLOW-3692] Remove ENV variables to avoid GPL (#4506) 2019-01-13 12:34:00 +00:00
LICENSE [AIRFLOW-3697] Vendorize nvd3 and slugify 2019-02-23 18:30:17 +00:00
MANIFEST.in [AIRFLOW-3697] Vendorize nvd3 and slugify 2019-02-23 18:30:17 +00:00
NOTICE [AIRFLOW-3697] Vendorize nvd3 and slugify 2019-02-23 18:30:17 +00:00
README.md [AIRFLOW-XXX] Add Instacart to list of companies who use Airflow (#5575) 2019-07-12 16:26:55 -07:00
TODO.md [AIRFLOW-2779] Add license headers to doc files (#4178) 2018-11-13 15:01:44 +01:00
UPDATING.md [AIRFLOW-3502] Update config template to reflect supporting different Celery pool implementation (#5477) 2019-06-26 12:08:33 +01:00
pylintrc [AIRFLOW-4891] Extend list of pylint good-names (#5524) 2019-07-04 15:12:09 +02:00
run_unit_tests.sh [ AIRFLOW-4554] Test for sudo command, add some other test docs (#5310) 2019-05-23 23:45:16 +02:00
setup.cfg [AIRFLOW-4725] Fix setup.py PEP440 & Sphinx-PyPI-upload dependency (#5363) 2019-06-08 22:41:56 -07:00
setup.py [AIRFLOW-4934] Bump Flask to resolve Werkzeug ProxyFix (#5571) 2019-07-12 16:22:12 +01:00
tox.ini [AIRFLOW-4197] Remove Python2 CI jobs (#5022) 2019-04-12 09:21:52 +02:00

README.md

Apache Airflow

PyPI version Build Status Coverage Status Documentation Status License PyPI - Python Version Twitter Follow Slack Status

Apache Airflow (or simply 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 (latest stable release) for help with installing Airflow, getting a quick start, or a more complete tutorial.

Documentation of GitHub master (latest development branch): ReadTheDocs Documentation

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.

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.

Contributing

Want to help build Apache Airflow? Check out our contributing documentation.

Who uses Apache Airflow?

As the Apache 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.

Currently officially using Airflow:

  1. 4G Capital [@posei]
  2. 6play [@lemourA, @achaussende, @d-nguyen, @julien-gm]
  3. 8fit [@nicor88, @frnzska]
  4. 90 Seconds [@aaronmak]
  5. 99 [@fbenevides, @gustavoamigo & @mmmaia]
  6. AdBOOST [AdBOOST]
  7. Adobe [@mishikaSingh, @ramandumcs, @vardancse]
  8. Agari [@r39132]
  9. Airbnb [@mistercrunch, @artwr]
  10. AirDNA
  11. Airfinity [@sibowyer]
  12. Airtel [@harishbisht]
  13. Alan [@charles-go]
  14. allegro.pl [@kretes]
  15. AltX [@pedromduarte]
  16. Apigee [@btallman]
  17. ARGO Labs [@California Data Collaborative]
  18. ARMEDANGELS [@swiffer]
  19. Arquivei [@arquivei]
  20. Arrive
  21. Asana [@chang, @dima-asana, @jdavidheiser, @ricardoandresrojas]
  22. Astronomer [@schnie, @andscoop, @tedmiston, @benjamingregory]
  23. Auth0 [@sicarul]
  24. Away [@trunsky]
  25. Azri Solutions [@userimack]
  26. Bagelcode
  27. BalanceHero [@swalloow]
  28. Banco de Formaturas [@guiligan]
  29. BandwidthX [@dineshdsharma]
  30. Basetis
  31. BBM
  32. Beamly [@christopheralcock]
  33. Beeswax
  34. Bellhops
  35. BelugaDB [@fabio-nukui & @joao-sallaberry & @lucianoviola & @tmatuki]
  36. Betterment [@betterment]
  37. BlaBlaCar [@puckel & @wmorin]
  38. Blacklane [@serkef]
  39. Bloc [@dpaola2]
  40. Bloomberg [@dimberman]
  41. Blue Yonder [@blue-yonder]
  42. BlueApron [@jasonjho & @matthewdavidhauser]
  43. Bluecore [@JLDLaughlin]
  44. Boda Telecom Suite - CE [@erssebaggala, @bodastage]
  45. Bodastage Solutions [@erssebaggala, @bodastage]
  46. Bombora Inc [@jeffkpayne, @pakelley, @dNavalta, @austynh, @TheOriginalAlex]
  47. Bonial International GmbH
  48. Bonnier Broadcasting [@wileeam]
  49. BounceX [@JoshFerge, @hudsonrio, @ronniekritou]
  50. Braintree [@coopergillan, @curiousjazz77, @raymondberg]
  51. Branch [@sdebarshi, @dmitrig01]
  52. Caesars Entertainment
  53. California Data Collaborative powered by ARGO Labs
  54. Capital One [@anoopengineer]
  55. Carbonite [@ajbosco]
  56. CarLabs [@sganz & @odannyc]
  57. CAVA [@minh5 & @patchus]
  58. Celect [@superdosh & @chadcelect]
  59. Censys [@zakird, @dadrian, & @andrewsardone]
  60. Change.org [@change, @vijaykramesh]
  61. Chartboost [@cgelman & @dclubb]
  62. Checkr [@tongboh]
  63. Children's Hospital of Philadelphia Division of Genomic Diagnostics [@genomics-geek]
  64. Cinimex DataLab [@kdubovikov]
  65. City of San Diego [@MrMaksimize, @andrell81 & @arnaudvedy]
  66. City of Toronto [@CityofToronto, @radumas]
  67. Civey [@WesleyBatista]
  68. Clairvoyant [@shekharv]
  69. Classmethod, Inc. [@shoito]
  70. Cleartax [@anks & @codebuff]
  71. Clover Health [@gwax & @vansivallab]
  72. Collectivehealth Inc. [@retornam]
  73. Compass [@wdhorton]
  74. ConnectWise [@jacobeturpin]
  75. ContaAzul [@bern4rdelli, @renanleme & @sabino]
  76. Cotap [@maraca & @richardchew]
  77. Craig@Work
  78. Crealytics
  79. Credit Karma [@preete-dixit-ck & @harish-gaggar-ck & @greg-finley-ck]
  80. Creditas [@dcassiano]
  81. CreditCards.com[@vmAggies & @jay-wallaby]
  82. Cryptalizer.com
  83. Custom Ink [@david-dalisay, @dmartin11 & @mpeteuil]
  84. Dailymotion [@germaintanguy & @hc]
  85. Danamica [@testvinder]
  86. Data Reply [@kaxil]
  87. DataCamp [@dgrtwo]
  88. DataFox [@sudowork]
  89. Digital First Media [@duffn & @mschmo & @seanmuth]
  90. DigitalOcean [@ajbosco]
  91. DoorDash
  92. Dotmodus [@dannylee12]
  93. Drivy [@AntoineAugusti]
  94. Easy Taxi [@caique-lima & @diraol]
  95. Enigma [@hydrosquall]
  96. eRevalue [@hamedhsn]
  97. Etsy [@mchalek]
  98. evo.company [@orhideous]
  99. Experity (formerly DocuTAP) [@cloneluke & @tobyjoliver]
  100. Fathom Health
  101. Firestone Inventing [@zihengCat]
  102. Flipp [@sethwilsonwishabi]
  103. Format [@format & @jasonicarter]
  104. FreshBooks [@DinoCow]
  105. Fuller, Inc. [@wutali & @sh-tech]
  106. Fundera [@andyxhadji]
  107. G Adventures [@chchtv11, @tgumbley, @tomwross]
  108. GameWisp [@tjbiii & @theryanwalls]
  109. GeneCards [@oferze]
  110. Gentner Lab [@neuromusic]
  111. Get Simpl [@rootcss]
  112. GitLab [@tlapiana & @tayloramurphy]
  113. Glassdoor [@syvineckruyk & @sid88in]
  114. Global Fashion Group [@GFG]
  115. GoDataDriven [@BasPH, @danielvdende, @ffinfo, @Fokko, @gglanzani, @hgrif, @jrderuiter, @NielsZeilemaker]
  116. GovTech GDS [@chrissng & @datagovsg]
  117. Grab [@calvintran]
  118. Gradeup [@gradeup]
  119. Grand Rounds [@richddr, @timz1290, @wenever, & @runongirlrunon]
  120. Groupalia [@jesusfcr]
  121. Groupon [@stevencasey]
  122. Growbots[@exploy]
  123. Gusto [@frankhsu]
  124. Handshake [@mhickman]
  125. Handy [@marcintustin / @mtustin-handy]
  126. happn [@PierreCORBEL]
  127. HAVAN [@botbiz]
  128. HBC Digital [@tmccartan & @dmateusp]
  129. HBO[@yiwang]
  130. Healthjump [@miscbits]
  131. HelloFresh [@tammymendt & @davidsbatista & @iuriinedostup]
  132. Hipages [@arihantsurana]
  133. Holimetrix [@thibault-ketterer]
  134. Hootsuite
  135. Hostnfly [@CyrilLeMat & @pierrechopin & @alexisrosuel]
  136. HotelQuickly [@zinuzoid]
  137. Huq Industries [@huqindustries, @alepuccetti, @turbomerl]
  138. Iflix [@ChaturvediSulabh]
  139. IFTTT [@apurvajoshi]
  140. iHeartRadio[@yiwang]
  141. imgix [@dclubb]
  142. ING
  143. Instacart 🥕 [@arp1t & @code-sauce & @jasonlew & @j4p3 & @lubert & @mmontagna & @RyanAD &@zzadeh]
  144. Intercom [@fox & @paulvic]
  145. Interia
  146. Investorise [@svenvarkel]
  147. Jampp
  148. Jeitto [@BrennerPablo & @ds-mauri]
  149. Jetlore [@bderose]
  150. JobTeaser [@stefani75 & @knil-sama]
  151. JULO [@sepam & @tenapril & @verzqy]
  152. Kalibrr [@charlesverdad]
  153. Kargo [@chaithra-yenikapati, @akarsh3007 & @dineshanchan]
  154. Karmic [@hyw]
  155. King [@nathadfield]
  156. Kiwi.com [@underyx]
  157. Kogan.com [@geeknam]
  158. Korbit [@jensenity]
  159. KPN B.V. [@biyanisuraj & @gmic]
  160. Lemann Foundation [@fernandosjp]
  161. LeMans Corporation [@alloydwhitlock] & [@tinyrye]
  162. LendUp [@lendup]
  163. LetsBonus [@jesusfcr & @OpringaoDoTurno]
  164. Liberty Global [@LibertyGlobal]
  165. liligo [@tromika]
  166. LingoChamp [@haitaoyao]
  167. Los Angeles Times [@standyro]
  168. LokSuvidha [@saurabhwahile]
  169. Lucid [@jbrownlucid & @kkourtchikov]
  170. Lumos Labs [@rfroetscher & @zzztimbo]
  171. Lyft [@feng-tao, @milton0825, @astahlman, @youngyjd, @ArgentFalcon]
  172. M4U [@msantino]
  173. Madrone [@mbreining & @scotthb]
  174. Markovian [@al-xv, @skogsbaeck, @waltherg]
  175. Mercadoni [@demorenoc]
  176. Mercari [@yu-iskw]
  177. MFG Labs
  178. MiNODES [@dice89, @diazcelsa]
  179. Modernizing Medicine[@kehv1n, @dalupus]
  180. Multiply [@nrhvyc]
  181. mytaxi [@mytaxi]
  182. Neoway [@neowaylabs]
  183. Nerdwallet
  184. New Relic [@marcweil]
  185. Newzoo [@newzoo-nexus]
  186. NEXT Trucking [@earthmancash2, @kppullin]
  187. Nextdoor [@SivaPandeti, @zshapiro & @jthomas123]
  188. Nine [@TheZepto]
  189. OdysseyPrime [@davideberdin]
  190. OfferUp
  191. OneFineStay [@slangwald]
  192. Open Knowledge International @vitorbaptista
  193. Optum - UnitedHealthGroup [@hiteshrd]
  194. Outcome Health [@mikethoun, @rolandotribo]
  195. Overstock [@mhousley & @mct0006]
  196. OVH [@ncrocfer & @anthonyolea]
  197. Pagar.me [@pagarme]
  198. Palo Alto Networks [@PaloAltoNetworks]
  199. Pandora Media [@Acehaidrey & @wolfier]
  200. PAYMILL [@paymill & @matthiashuschle]
  201. PayPal [@r39132 & @jhsenjaliya]
  202. Pernod-Ricard [@romain-nio]
  203. Plaid [@plaid, @AustinBGibbons & @jeeyoungk]
  204. Playbuzz [@clintonboys & @dbn]
  205. PMC [@andrewm4894]
  206. Poshmark
  207. Postmates [@syeoryn]
  208. Premise [@jmccallum-premise]
  209. Pronto Tools [@zkan & @mesodiar]
  210. Publicis Pixelpark [@feluelle]
  211. PubNub [@jzucker2]
  212. PXYData [@patchus]
  213. Qplum [@manti]
  214. Quantopian [@eronarn]
  215. Qubole [@msumit]
  216. Quizlet [@quizlet]
  217. Quora
  218. REA Group
  219. Reddit [@reddit]
  220. Reverb[@reverbdotcom]
  221. Revolut [@sztanko & @nautilus28]
  222. Robinhood [@vineet-rh]
  223. Scaleway [@kdeldycke]
  224. Seasoned [@joshuacano] & [@mmyers] & [@tjward]
  225. Secret Escapes [@secretescapes]
  226. Semantics3 [@abishekk92]
  227. Sense360 [@kamilmroczek]
  228. Shopkick [@shopkick]
  229. Sidecar [@getsidecar]
  230. SimilarWeb [@similarweb]
  231. Skyscanner [@skyscanner]
  232. SmartNews [@takus]
  233. SnapTravel
  234. SocialCops [@vinayak-mehta & @sharky93]
  235. Société générale [@medmrgh & @s83]
  236. Spotahome [@spotahome]
  237. SpotHero [@benjigoldberg]
  238. Spotify [@znichols]
  239. Square
  240. Stackspace
  241. StoneCo [@lgwacker]
  242. Strava [@strava, @dhuang & @liamstewart]
  243. Stripe [@jbalogh]
  244. Strongmind [@tomchapin & @wongstein]
  245. Surfline [@jawang35]
  246. T2 Systems [@unclaimedpants]
  247. Tails.com [@alanmcruickshank]
  248. TEK [@telac]
  249. Telefonica Innovation Alpha [@Alpha-Health]
  250. Telia Company
  251. Tesla [@thoralf-gutierrez]
  252. The Home Depot[@apekshithr]
  253. THE ICONIC [@revathijay] [@ilikedata]
  254. Thinking Machines [@marksteve]
  255. Thinknear [@d3cay1, @ccson, & @ababian]
  256. ThoughtWorks [@sann3]
  257. Thumbtack [@natekupp]
  258. Tictail
  259. Tile [@ranjanmanish]
  260. Tinder [@kbendick]
  261. Tokopedia [@topedmaria]
  262. Trocafone [@idontdomath & @gseva & @ordonezf & @PalmaLeandro]
  263. Twine Labs [@ivorpeles]
  264. Twitter [@aoen]
  265. Ubisoft [@Walkoss]
  266. United Airlines [@ilopezfr]
  267. Upsight
  268. VeeR VR [@pishilong]
  269. Veikkaus [@hixus]
  270. Vente-Exclusive.com [@alexvanboxel]
  271. Vevo [@csetiawan & @jerrygillespie]
  272. Vidio
  273. Ville de Montréal@VilledeMontreal]
  274. Vnomics [@lpalum]
  275. Waze [@waze]
  276. WePay [@criccomini & @mtagle]
  277. WeTransfer [@coredipper & @higee & @azclub]
  278. Whistle Labs [@ananya77041]
  279. WiseBanyan
  280. Wooga
  281. Xero [@yan9yu & adamantnz]
  282. Xoom
  283. Yahoo!
  284. Yieldr [@ggeorgiadis]
  285. Zapier [@drknexus & @statwonk]
  286. Zego [@ruimffl, @james-welly, @ken-payne]
  287. Zendesk
  288. Zenly [@cerisier & @jbdalido]
  289. Zymergen
  290. Zynga

Who Maintains Apache Airflow?

Airflow is the work of the community, but the core committers/maintainers are responsible for reviewing and merging PRs as well as steering conversation around new feature requests. If you would like to become a maintainer, please review the Apache Airflow committer requirements.