Skip to content
Python Shell HTML JavaScript Dockerfile CSS
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.bash_completion.d [AIRFLOW-3611] Simplified development environment (#4932) Aug 27, 2019
.github [AIRFLOW-XXX] Remove flake8 from PR template Sep 4, 2019
airflow [AIRFLOW-5072] gcs_hook should download once (#5685) Sep 5, 2019
dags [AIRFLOW-4686] Make dags Pylint compatible (#5753) Aug 13, 2019
dev [AIRFLOW-5206] Common licence in all .md files, TOC + removed TODO.md ( Aug 22, 2019
docs [AIRFLOW-XXX] Add information about default pool to docs (#6019) Sep 5, 2019
hooks [Airflow-XXXX] Fix a typo Sep 3, 2019
images [AIRFLOW-3611] Simplified development environment (#4932) Aug 27, 2019
license-templates [AIRFLOW-5234] Rst files have consistent, auto-added license Aug 18, 2019
licenses [AIRFLOW-5233] Fixed consistency in whitespace (tabs/eols) + common p… Aug 16, 2019
scripts [AIRFLOW-5405] Fixed Unbound variable in force build Sep 4, 2019
tests [AIRFLOW-5072] gcs_hook should download once (#5685) Sep 5, 2019
.bash_completion [AIRFLOW-3611] Simplified development environment (#4932) Aug 27, 2019
.coveragerc [AIRFLOW-5063] Fix performance when switching between master/v1-10 (#… Jul 29, 2019
.dockerignore [AIRFLOW-5389] better organized scripts for building CI docker deps Sep 3, 2019
.editorconfig [AIRFLOW-2287] Fix incorrect ASF headers Apr 14, 2018
.flake8 [AIRFLOW-4117] Travis CI uses multi-stage images to run tests (#4938) Jul 17, 2019
.gitignore [AIRFLOW-5329] Added shared files folder Aug 28, 2019
.hadolint.yaml [AIRFLOW-5180] Added static checks (yamllint) + auto-licences for yam… Aug 22, 2019
.pre-commit-config.yaml [AIRFLOW-5404] Switch back to using Lucas-C pre-commit-hooks Sep 4, 2019
.rat-excludes [AIRFLOW-4364] Add Pylint to CI (#5238) May 30, 2019
.readthedocs.yml [AIRFLOW-5180] Added static checks (yamllint) + auto-licences for yam… Aug 22, 2019
.travis.yml [AIRFLOW-5285] Pylint pre-commit filters out pylint_todo files (#5884) Aug 23, 2019
BREEZE.rst [AIRFLOW-XXX] Make Breeze The default integration test environment (#… Sep 5, 2019
CHANGELOG.txt [AIRFLOW-XXX] Add Chagelog for 1.10.5 Sep 4, 2019
CONTRIBUTING.md [AIRFLOW-XXX] Make Breeze The default integration test environment (#… Sep 5, 2019
Dockerfile [AIRFLOW-5389] better organized scripts for building CI docker deps Sep 3, 2019
Dockerfile-checklicence [AIRFLOW-5143] Fix for potentially corrupted .jar (#5759) Aug 8, 2019
Dockerfile-context [AIRFLOW-5229] Consistent licences to all other files (#5831) Aug 16, 2019
INSTALL [AIRFLOW-3692] Remove ENV variables to avoid GPL (#4506) Jan 13, 2019
LICENSE [AIRFLOW-5233] Fixed consistency in whitespace (tabs/eols) + common p… Aug 16, 2019
LOCAL_VIRTUALENV.rst [AIRFLOW-XXX] Make Breeze The default integration test environment (#… Sep 5, 2019
MANIFEST.in [AIRFLOW-3697] Vendorize nvd3 and slugify Feb 23, 2019
NOTICE [AIRFLOW-5233] Fixed consistency in whitespace (tabs/eols) + common p… Aug 16, 2019
README.md [AIRFLOW-XXX] Adds BlueKiri and Logitrabel to companies using Airflow ( Sep 3, 2019
UPDATING.md [AIRFLOW-5072] gcs_hook should download once (#5685) Sep 5, 2019
breeze [AIRFLOW-5364] Fix missing port numbers for local ci scripts Aug 31, 2019
breeze-complete [AIRFLOW-3611] Simplified development environment (#4932) Aug 27, 2019
confirm [AIRFLOW-5161] Static checks are run automatically in pre-commit hooks ( Aug 15, 2019
pylintrc [AIRFLOW-4462] Use datetime2 column types when using MSSQL backend (#… Aug 23, 2019
run-tests [AIRFLOW-3611] Simplified development environment (#4932) Aug 27, 2019
run-tests-complete [AIRFLOW-3611] Simplified development environment (#4932) Aug 27, 2019
setup.cfg [AIRFLOW-4725] Fix setup.py PEP440 & Sphinx-PyPI-upload dependency (#… Jun 9, 2019
setup.py [AIRFLOW-5099] Add Google Cloud AutoML operators (#5720) Aug 26, 2019
yamllint-config.yml [AIRFLOW-5180] Added static checks (yamllint) + auto-licences for yam… Aug 22, 2019

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.

Table of contents

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

Links

You can’t perform that action at this time.