1 Star 0 Fork 0

George / airflow

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
Apache-2.0

Apache Airflow

PyPI version Airflow 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

Requirements

Apache Airflow is tested with:

Master version (2.0.0dev)

  • Python versions: 3.6, 3.7, 3.8
  • Postgres DB: 9.6, 10
  • MySQL DB: 5.7
  • Sqlite - latest stable (it is used mainly for development purpose)
  • Kubernetes - 1.16.2, 1.17.0

Stable version (1.10.10)

  • Python versions: 2.7, 3.5, 3.6, 3.7
  • Postgres DB: 9.6, 10
  • MySQL DB: 5.6, 5.7
  • Sqlite - latest stable (it is used mainly for development purpose)
  • Kubernetes - 1.16.2, 1.17.0

Additional notes on Python version requirements

  • Stable version requires at least Python 3.5.3 when using Python 3
  • Stable version is currently incompatible with Python 3.8 due to a known compatibility issue with a dependent library

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.

Official container (Docker) images for Apache Airflow are described in IMAGES.rst.

Installing from PyPI

Airflow is published as apache-airflow package in PyPI. Installing it however might be sometimes tricky because Airflow is a bit of both a library and application. Libraries usually keep their dependencies open and applications usually pin them, but we should do neither and both at the same time. We decided to keep our dependencies as open as possible (in setup.py) so users can install different versions of libraries if needed. This means that from time to time plain pip install apache-airflow will not work or will produce unusable Airflow installation.

In order to have repeatable installation, however, starting from Airflow 1.10.10 we also keep a set of "known-to-be-working" requirement files in the requirements folder. Those "known-to-be-working" requirements are per major/minor python version (3.6/3.7/3.8). You can use them as constraint files when installing Airflow from PyPI. Note that you have to specify correct Airflow version and python versions in the URL.

  1. Installing just airflow:
pip install apache-airflow==1.10.10 \
 --constraint https://raw.githubusercontent.com/apache/airflow/1.10.10/requirements/requirements-python3.7.txt
  1. Installing with extras (for example postgres,gcp)
pip install apache-airflow[postgres,gcp]==1.10.10 \
 --constraint https://raw.githubusercontent.com/apache/airflow/1.10.10/requirements/requirements-python3.7.txt

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.

Backport packages

Context: Airflow 2.0 operators, hooks, and secrets

Currently, stable Apache Airflow versions are from the 1.10.* series. We are working on the future, major version of Airflow from the 2.0.* series. It is going to be released in 2020. However, the exact time of release depends on many factors and is not yet confirmed.

We have already a lot of changes in the operators, transfers, hooks, sensors, secrets for many external systems, but they are not used nor tested widely because they are part of the master/2.0 release.

In the Airflow 2.0 - following AIP-21 "change in import paths" all the non-core interfaces to external systems of Apache Airflow have been moved to the "airflow.providers" package.

Thanks to that and automated backport effort we took, the operators from Airflow 2.0 can be used in Airflow 1.10 as separately installable packages, with the constraint that those packages can only be used in python3.6+ environment.

Installing Airflow 2.0 operators in Airflow 1.10

We released backport packages that can be installed for older Airflow versions. Those backport packages are going to be released more frequently that main Airflow 1.10.& releases.

You will not have to upgrade your Airflow version to use those packages. You can find those packages in the PyPI and install them separately for each provider.

Those packages are available now and can be used in the latest Airflow 1.10* version. Most of those packages are also installable and usable in most Airflow 1.10.* releases but there is no extensive testing done beyond the latest released version, so you might expect more problems in earlier Airflow versions.

An easier migration path to 2.0

With backported providers package users can migrate their DAGs to the new providers package incrementally and once they convert to the new operators/sensors/hooks they can seamlessly migrate their environments to Airflow 2.0. The nice thing about providers backport packages is that you can use both old and new classes at the same time - even in the same DAG. So your migration can be gradual and smooth. Note that in Airflow 2.0 old classes raise deprecation warning and redirect to the new classes wherever it is possible. In some rare cases the new operators will not be fully backwards compatible - you will find information about those cases in UPDATING.md where we explained all such cases. Switching early to the Airflow 2.0 operators while still running Airflow 1.10 will make your migration much easier.

More information about the status and releases of the back-ported packages are available at Backported providers package page

Installing backport packages

Note that the backport packages might require extra dependencies. Pip installs the required dependencies automatically when it installs the backport package, but there are sometimes cross-dependencies between the backport packages. For example google package has cross-dependency with amazon package to allow transfers between those two cloud providers. You might need to install those packages in case you use cross-dependent packages. The easiest way to install them is to use "extras" when installing the package, for example the below will install both google and amazon backport packages:

pip install apache-airflow-backport-providers-google[amazon]

This is all documented in the PyPI description of the packages as well as in the README.md file available for each provider package. For example for google package you can find the readme in README.md. You will also find there the summary of both - new classes and moved classes as well as requirement information.

Troubleshooting installing backport packages

Backport providers only work when they are installed in the same namespace as the 'apache-airflow' 1.10 package. This is majority of cases when you simply run pip install - it installs all packages in the same folder (usually in /usr/local/lib/pythonX.Y/site-packages). But when you install the apache-airflow and apache-airflow-backport-package-* using different methods (for example using pip install -e . or pip install --user they might be installed in different namespaces. If that's the case, the provider packages will not be importable (the error in such case is ModuleNotFoundError: No module named 'airflow.providers').

If you experience the problem, you can easily fix it by creating symbolic link in your installed "airflow" folder to the "providers" folder where you installed your backport packages. If you installed it with -e, this link should be created in your airflow sources, if you installed it with the --user flag it should be from the ~/.local/lib/pythonX.Y/site-packages/airflow/ folder,

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

Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ============================================================================ APACHE AIRFLOW SUBCOMPONENTS: The Apache Airflow project contains subcomponents with separate copyright notices and license terms. Your use of the source code for the these subcomponents is subject to the terms and conditions of the following licenses. ======================================================================== Third party Apache 2.0 licenses ======================================================================== The following components are provided under the Apache 2.0 License. See project link for details. The text of each license is also included at licenses/LICENSE-[project].txt. (ALv2 License) hue v4.3.0 (https://github.com/cloudera/hue/) (ALv2 License) jqclock v2.3.0 (https://github.com/JohnRDOrazio/jQuery-Clock-Plugin) (ALv2 License) bootstrap3-typeahead v4.0.2 (https://github.com/bassjobsen/Bootstrap-3-Typeahead) ======================================================================== MIT licenses ======================================================================== The following components are provided under the MIT License. See project link for details. The text of each license is also included at licenses/LICENSE-[project].txt. (MIT License) jquery v3.4.1 (https://jquery.org/license/) (MIT License) dagre-d3 v0.6.4 (https://github.com/cpettitt/dagre-d3) (MIT License) bootstrap v3.2 (https://github.com/twbs/bootstrap/) (MIT License) d3-tip v0.9.1 (https://github.com/Caged/d3-tip) (MIT License) dataTables v1.10.20 (https://datatables.net) (MIT License) Bootstrap Toggle v2.2.2 (http://www.bootstraptoggle.com) (MIT License) normalize.css v3.0.2 (http://necolas.github.io/normalize.css/) (MIT License) ElasticMock v1.3.2 (https://github.com/vrcmarcos/elasticmock) (MIT License) MomentJS v2.24.0 (http://momentjs.com/) (MIT License) moment-strftime v0.5.0 (https://github.com/benjaminoakes/moment-strftime) (MIT License) python-slugify v4.0.0 (https://github.com/un33k/python-slugify) (MIT License) python-nvd3 v0.15.0 (https://github.com/areski/python-nvd3) (MIT License) eonasdan-bootstrap-datetimepicker v4.17.37 (https://github.com/eonasdan/bootstrap-datetimepicker/) ======================================================================== BSD 3-Clause licenses ======================================================================== The following components are provided under the BSD 3-Clause license. See project links for details. The text of each license is also included at licenses/LICENSE-[project].txt. (BSD 3 License) d3 v5.15.0 (https://d3js.org)

简介

Apache Airflow - A platform to programmatically author, schedule, and monitor workflows 展开 收起
Apache-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
1
https://gitee.com/datapark/airflow.git
git@gitee.com:datapark/airflow.git
datapark
airflow
airflow
master

搜索帮助