Skip to content
Apache Airflow - A platform to programmatically author, schedule, and monitor workflows
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.
.github [AIRFLOW-XXX] Remove flake8 from PR template Sep 4, 2019
airflow [AIRFLOW-6104] [AIP-21] Rename datastore service (#6853) Dec 19, 2019
common [AIRFLOW-6002] Drop support for python 3.5 (#6595) Nov 17, 2019
dags [AIRFLOW-5362] Reorder imports (#5944) Oct 2, 2019
dev [AIRFLOW-XXX] Bump Jira version to fix issue with async (#6813) Dec 13, 2019
docs [AIRFLOW-6147] [AIP-21] Rename GoogleCloudStorageToS3Operator (#6826) Dec 19, 2019
hooks [AIRFLOW-5887] User is removed from CI images (#6540) Nov 12, 2019
images [AIRFLOW-XXX] Add information how to configure pytest runner (#6736) Dec 6, 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-6130] Make Cassandra to GCS operator pylint compatible (#6692) Dec 18, 2019
tests [AIRFLOW-6104] [AIP-21] Rename datastore service (#6853) Dec 19, 2019
.asf.yaml [AIRFLOW-6103] Add .asf.yaml to control Github settings (#6689) Nov 29, 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-6216] Allow pytests to be run without "tests" (#6770) Dec 10, 2019
.editorconfig [AIRFLOW-2287] Fix incorrect ASF headers Apr 14, 2018
.flake8 [AIRFLOW-5604] Remove duplicated isort check (#6272) Oct 6, 2019
.gitignore [AIRFLOW-6058] Running tests with pytest (#6472) Dec 5, 2019
.hadolint.yaml [AIRFLOW-5180] Added static checks (yamllint) + auto-licences for yam… Aug 22, 2019
.pre-commit-config.yaml [AIRFLOW-6140] Add missing types for some core classes (#6702) Dec 4, 2019
.rat-excludes [AIRFLOW-6142] Fix different local/Travis pylint results (#6705) Dec 2, 2019
.readthedocs.yml [AIRFLOW-5180] Added static checks (yamllint) + auto-licences for yam… Aug 22, 2019
.travis.yml [AIRFLOW-6058] Running tests with pytest (#6472) Dec 5, 2019
BREEZE.rst [AIRFLOW-6058] Running tests with pytest (#6472) Dec 5, 2019
CHANGELOG.txt [AIRFLOW-XXX] Add Changelog for 1.10.6 (#6728) Dec 4, 2019
CONTRIBUTING.md [AIRFLOW-XXX] Fixed case problem with CONTRIBUTING.rst (#6329) Oct 14, 2019
CONTRIBUTING.rst [AIRFLOW-XXX] Minor fix to CONTRIBUTING.rst (#6752) Dec 8, 2019
Dockerfile [AIRFLOW-6216] Allow pytests to be run without "tests" (#6770) Dec 10, 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-6211] Use conda for local virtualenv (#6766) Dec 10, 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] Update README.md (#6848) Dec 19, 2019
STATIC_CODE_CHECKS.rst more GSOD improvements (#6585) Dec 4, 2019
TESTING.rst [AIRFLOW-XXX] Add simple guidelines to unit test writing (#6846) Dec 19, 2019
UPDATING.md [AIRFLOW-6100] [AIP-21] Rename bigquery service (#6854) Dec 19, 2019
breeze [AIRFLOW-6058] Running tests with pytest (#6472) Dec 5, 2019
breeze-complete [AIRFLOW-6004] Untangle Executors class to avoid cyclic imports (#6596) Dec 3, 2019
confirm [AIRFLOW-5369] Adds interactivity to pre-commits (#5976) Sep 18, 2019
pylintrc [AIRFLOW-6193] Do not use asserts in Airflow main code (#6749) Dec 9, 2019
pytest.ini [AIRFLOW-6171] Apply .airflowignore to correct subdirectories (#6784) Dec 12, 2019
setup.cfg [AIRFLOW-5362] Reorder imports (#5944) Oct 2, 2019
setup.py [AIRFLOW-5616] Switch PrestoHook from pyhive to prestosql-client to s… Dec 19, 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, @ashb, @kaxil, @dimberman, @andriisoldatenko, @ryw, @andrewhharmon]
  26. Auth0 [@sicarul]
  27. Automattic [@anandnalya, @bperson, @khrol, @xyu]
  28. Away [@trunsky]
  29. Azri Solutions [@userimack]
  30. Bagelcode
  31. BalanceHero [@swalloow]
  32. Banco de Formaturas [@guiligan]
  33. BandwidthX [@dineshdsharma]
  34. Basetis
  35. BBM
  36. Beamly [@christopheralcock]
  37. Beeswax
  38. Bellhops
  39. BelugaDB [@fabio-nukui & @joao-sallaberry & @lucianoviola & @tmatuki]
  40. Betterment [@betterment]
  41. Bexs Bank [@felipefb & @ilarsen]
  42. BigQuant [@bigquant]
  43. Birdz by Veolia [@benjamingrenier]
  44. BlaBlaCar [@puckel & @wmorin]
  45. Blacklane [@serkef]
  46. Bloc [@dpaola2]
  47. Bloomberg [@dimberman]
  48. Blue Yonder [@blue-yonder]
  49. BlueApron [@jasonjho & @matthewdavidhauser]
  50. Bluecore [@JLDLaughlin]
  51. Bluekiri [@Bluekiri]
  52. Boda Telecom Suite - CE [@erssebaggala, @bodastage]
  53. Bodastage Solutions [@erssebaggala, @bodastage]
  54. Bombora Inc [@jeffkpayne, @pakelley, @dNavalta, @austynh, @TheOriginalAlex]
  55. Bonial International GmbH
  56. Bonnier Broadcasting [@wileeam]
  57. BounceX [@JoshFerge, @hudsonrio, @ronniekritou]
  58. Braintree [@coopergillan, @curiousjazz77, @raymondberg]
  59. Branch [@sdebarshi, @dmitrig01]
  60. Caesars Entertainment
  61. California Data Collaborative powered by ARGO Labs
  62. Capital One [@anoopengineer]
  63. Carbonite [@ajbosco]
  64. CarLabs [@sganz & @odannyc]
  65. CAVA [@minh5 & @patchus]
  66. Celect [@superdosh & @chadcelect]
  67. Censys [@zakird, @dadrian, & @andrewsardone]
  68. Change.org [@change, @vijaykramesh]
  69. Chartboost [@cgelman & @dclubb]
  70. Checkr [@tongboh]
  71. Children's Hospital of Philadelphia Division of Genomic Diagnostics [@genomics-geek]
  72. Cinimex DataLab [@kdubovikov]
  73. City of San Diego [@MrMaksimize, @andrell81 & @arnaudvedy]
  74. City of Toronto [@CityofToronto, @radumas]
  75. ciValue [@chencivalue, @YoavGaudin, @saleem-boshnak]
  76. Civey [@WesleyBatista]
  77. Clairvoyant [@shekharv]
  78. Classmethod, Inc. [@shoito]
  79. Cleartax [@anks & @codebuff]
  80. Clover Health [@gwax & @vansivallab]
  81. Collectivehealth Inc. [@retornam]
  82. Compass [@wdhorton]
  83. ConnectWise [@jacobeturpin]
  84. ContaAzul [@bern4rdelli, @renanleme & @sabino]
  85. Cotap [@maraca & @richardchew]
  86. Craig@Work
  87. Crealytics
  88. Credit Karma [@preete-dixit-ck & @harish-gaggar-ck & @greg-finley-ck]
  89. Creditas [@dcassiano]
  90. CreditCards.com[@vmAggies & @jay-wallaby]
  91. Cryptalizer.com
  92. Custom Ink [@david-dalisay, @dmartin11 & @mpeteuil]
  93. Cyscale [@ocical]
  94. Dailymotion [@germaintanguy & @hc]
  95. Danamica [@testvinder]
  96. Data Reply [@kaxil]
  97. DataCamp [@dgrtwo]
  98. DataFox [@sudowork]
  99. Dentsu Inc. [@bryan831 & @loozhengyuan]
  100. Digital First Media [@duffn & @mschmo & @seanmuth]
  101. DigitalOcean [@ajbosco]
  102. DoorDash
  103. Dotmodus [@dannylee12]
  104. Drivy [@AntoineAugusti]
  105. Easy Taxi [@caique-lima & @diraol]
  106. EllisDon [@d2kalra & @zbasama]
  107. Endesa [@drexpp]
  108. Enigma [@hydrosquall]
  109. Datamaran [@valexharo]
  110. Etsy [@mchalek]
  111. evo.company [@orhideous]
  112. Experity (formerly DocuTAP) [@cloneluke & @tobyjoliver]
  113. Fathom Health
  114. Firestone Inventing [@zihengCat]
  115. Flipp [@sethwilsonwishabi]
  116. Format [@format & @jasonicarter]
  117. FreshBooks [@DinoCow]
  118. Freshworks [@shaikshakeel]
  119. FullContact
  120. Fuller, Inc. [@wutali & @sh-tech]
  121. Fundera [@andyxhadji]
  122. G Adventures [@chchtv11, @tgumbley, @tomwross]
  123. GameWisp [@tjbiii & @theryanwalls]
  124. GeneCards [@oferze]
  125. Gentner Lab [@neuromusic]
  126. Get Simpl [@rootcss]
  127. GitLab [@tlapiana & @tayloramurphy]
  128. Glassdoor [@syvineckruyk & @sid88in]
  129. Global Fashion Group [@GFG]
  130. GoDataDriven [@BasPH, @danielvdende, @ffinfo, @Fokko, @gglanzani, @hgrif, @jrderuiter, @NielsZeilemaker]
  131. GovTech GDS [@chrissng & @datagovsg]
  132. Grab [@calvintran]
  133. Gradeup [@gradeup]
  134. Grand Rounds [@richddr, @timz1290, @wenever, & @runongirlrunon]
  135. Groupalia [@jesusfcr]
  136. Groupon [@stevencasey]
  137. Growbots[@exploy]
  138. GSN Games
  139. Gusto [@frankhsu]
  140. Handshake [@mhickman]
  141. Handy [@marcintustin / @mtustin-handy]
  142. happn [@pcorbel]
  143. HAVAN [@botbiz]
  144. HBC Digital [@tmccartan & @dmateusp]
  145. HBO[@yiwang]
  146. Healthjump [@miscbits]
  147. HelloFresh [@tammymendt & @davidsbatista & @iuriinedostup]
  148. Hipages [@arihantsurana]
  149. Holimetrix [@thibault-ketterer]
  150. Hootsuite
  151. Hostnfly [@CyrilLeMat & @pierrechopin & @alexisrosuel]
  152. HotelQuickly [@zinuzoid]
  153. Huq Industries [@huqindustries, @alepuccetti, @turbomerl]
  154. Iflix [@ChaturvediSulabh]
  155. IFTTT [@apurvajoshi]
  156. iHeartRadio[@yiwang]
  157. imgix [@dclubb]
  158. ING
  159. Instacart 🥕 [@arp1t & @code-sauce & @jasonlew & @j4p3 & @lubert & @mmontagna & @RyanAD &@zzadeh]
  160. Intercom [@fox & @paulvic]
  161. Interia
  162. Investorise [@svenvarkel]
  163. iS2.co [@iS2co]
  164. Jampp
  165. Jeitto [@BrennerPablo & @ds-mauri]
  166. Jetlore [@bderose]
  167. JobTeaser [@stefani75 & @knil-sama]
  168. JULO [@sepam & @tenapril & @verzqy]
  169. Kalibrr [@charlesverdad]
  170. Kargo [@chaithra-yenikapati, @akarsh3007 & @dineshanchan]
  171. Karmic [@hyw]
  172. King [@nathadfield]
  173. King Abdullah Petroleum Studies and Research Center(KAPSARC) [@saianupkumarp]
  174. Kiwi.com [@underyx]
  175. Kogan.com [@geeknam]
  176. Korbit [@jensenity]
  177. KPN B.V. [@biyanisuraj & @gmic]
  178. Kroton Educacional
  179. Lemann Foundation [@fernandosjp]
  180. LeMans Corporation [@alloydwhitlock] & [@tinyrye]
  181. LendUp [@lendup]
  182. LetsBonus [@jesusfcr & @OpringaoDoTurno]
  183. Liberty Global [@LibertyGlobal]
  184. liligo [@tromika]
  185. LingoChamp [@haitaoyao]
  186. Logitravel Group
  187. Los Angeles Times [@standyro]
  188. LokSuvidha [@saurabhwahile]
  189. Lucid [@jbrownlucid & @kkourtchikov]
  190. Lumos Labs [@rfroetscher & @zzztimbo]
  191. Lyft [@feng-tao, @milton0825, @astahlman, @youngyjd, @ArgentFalcon]
  192. M4U [@msantino]
  193. Madrone [@mbreining & @scotthb]
  194. Markovian [@al-xv, @skogsbaeck, @waltherg]
  195. Mercadoni [@demorenoc]
  196. Mercari [@yu-iskw]
  197. MFG Labs
  198. MiNODES [@dice89, @diazcelsa]
  199. Modernizing Medicine[@kehv1n, @dalupus]
  200. Multiply [@nrhvyc]
  201. mytaxi [@mytaxi]
  202. National Bank of Canada [@brilhana]
  203. Neoway [@neowaylabs]
  204. Nerdwallet
  205. New Relic [@marcweil]
  206. Newzoo [@newzoo-nexus]
  207. NEXT Trucking [@earthmancash2, @kppullin]
  208. Nextdoor [@SivaPandeti, @zshapiro & @jthomas123]
  209. Nine [@TheZepto]
  210. OdysseyPrime [@davideberdin]
  211. OfferUp
  212. OneFineStay [@slangwald]
  213. Open Knowledge International @vitorbaptista
  214. Optum - UnitedHealthGroup [@hiteshrd]
  215. Outcome Health [@mikethoun, @rolandotribo]
  216. Overstock [@mhousley & @mct0006]
  217. OVH [@ncrocfer & @anthonyolea]
  218. Pagar.me [@pagarme]
  219. Palo Alto Networks [@PaloAltoNetworks]
  220. Pandora Media [@Acehaidrey & @wolfier]
  221. PayFit [@pcorbel]
  222. PAYMILL [@paymill & @matthiashuschle]
  223. PayPal [@r39132 & @jhsenjaliya]
  224. Pecan [@ohadmata]
  225. Pernod-Ricard [@romain-nio]
  226. Plaid [@plaid, @AustinBGibbons & @jeeyoungk]
  227. Playbuzz [@clintonboys & @dbn]
  228. PMC [@andrewm4894]
  229. Poshmark
  230. Postmates [@syeoryn]
  231. Premise [@jmccallum-premise]
  232. Pronto Tools [@zkan & @mesodiar]
  233. proton.ai [@prmsolutions]
  234. Publicis Pixelpark [@feluelle]
  235. PubNub [@jzucker2]
  236. PXYData [@patchus]
  237. Qplum [@manti]
  238. Quantopian [@eronarn]
  239. Qubole [@msumit]
  240. Quizlet [@quizlet]
  241. Quora
  242. Raízen [@rudlac & @guifneves]
  243. REA Group
  244. Reddit [@reddit]
  245. Reverb[@reverbdotcom]
  246. Revolut [@sztanko & @nautilus28]
  247. Robinhood [@vineet-rh]
  248. Scaleway [@kdeldycke]
  249. Seasoned [@joshuacano] & [@mmyers] & [@tjward]
  250. Secret Escapes [@secretescapes]
  251. Semantics3 [@abishekk92]
  252. Sense360 [@kamilmroczek]
  253. Sentry.io [@tiopi]
  254. Shopkick [@shopkick]
  255. Sidecar [@getsidecar]
  256. SimilarWeb [@similarweb]
  257. Skyscanner [@skyscanner]
  258. SmartNews [@takus]
  259. SnapTravel
  260. SocialCops [@vinayak-mehta & @sharky93]
  261. Société générale [@medmrgh & @s83]
  262. Spotahome [@spotahome]
  263. SpotHero [@benjigoldberg]
  264. Spotify [@znichols]
  265. Square
  266. Stackspace
  267. StoneCo [@lgwacker]
  268. Strava [@strava, @dhuang & @liamstewart]
  269. Stripe [@jbalogh]
  270. Strongmind [@tomchapin & @wongstein]
  271. Surfline [@jawang35]
  272. T2 Systems [@unclaimedpants]
  273. Tails.com [@alanmcruickshank]
  274. TEK [@telac]
  275. Telefonica Innovation Alpha [@Alpha-Health]
  276. Telia Company
  277. Tesla [@thoralf-gutierrez]
  278. The Home Depot[@apekshithr]
  279. THE ICONIC [@revathijay] [@ilikedata]
  280. Thinking Machines [@marksteve]
  281. Thinknear [@d3cay1, @ccson, & @ababian]
  282. ThoughtWorks [@sann3]
  283. Thumbtack [@natekupp]
  284. Tictail
  285. Tile [@ranjanmanish]
  286. Tinder [@kbendick]
  287. TokenAnalyst [@simonohanlon101, @ankitchiplunkar, @sidshekhar, @sp6pe]
  288. Tokopedia [@topedmaria]
  289. Trocafone [@idontdomath & @gseva & @ordonezf & @PalmaLeandro]
  290. Twine Labs [@ivorpeles]
  291. Twitter [@aoen]
  292. Ubisoft [@Walkoss]
  293. Udacity [@dandikunited, @simon-uc]
  294. United Airlines [@ilopezfr]
  295. Upsight
  296. VeeR VR [@pishilong]
  297. Veikkaus [@hixus]
  298. Vente-Exclusive.com [@alexvanboxel]
  299. Vevo [@csetiawan & @jerrygillespie]
  300. Vidio
  301. Ville de Montréal@VilledeMontreal]
  302. Vnomics [@lpalum]
  303. Walmart Labs [@bharathpalaksha, @vipul007ravi]
  304. Waze [@waze]
  305. WePay [@criccomini & @mtagle]
  306. WeTransfer [@coredipper & @higee & @azclub]
  307. Whistle Labs [@ananya77041]
  308. WiseBanyan
  309. Wooga
  310. Wrike [@eliseealex & teoretic6]
  311. Xero [@yan9yu & adamantnz]
  312. Xoom
  313. Yahoo!
  314. Yieldr [@ggeorgiadis]
  315. Zapier [@drknexus & @statwonk]
  316. Zego [@ruimffl, @james-welly, @ken-payne]
  317. Zendesk
  318. Zenly [@cerisier & @jbdalido]
  319. Zymergen
  320. 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.

Can I use the Apache Airflow logo in my presentation?

Yes! Be sure to abide by the Apache Foundation trademark policies and the Apache Airflow Brandbook. The most up to date logos are found in this repo and on the Apache Software Foundation website.

Links

You can’t perform that action at this time.