luigi
Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution, workflow management, visualization etc. It also comes with Hadoop support built in.
Science Score: 49.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 2 DOI reference(s) in README -
○Academic publication links
-
✓Committers with academic emails
9 of 612 committers (1.5%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (15.2%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution, workflow management, visualization etc. It also comes with Hadoop support built in.
Basic Info
- Host: GitHub
- Owner: spotify
- License: apache-2.0
- Language: Python
- Default Branch: master
- Size: 10.9 MB
Statistics
- Stars: 18,279
- Watchers: 466
- Forks: 2,418
- Open Issues: 143
- Releases: 61
Topics
Metadata Files
README.rst
.. figure:: https://raw.githubusercontent.com/spotify/luigi/master/doc/luigi.png
:alt: Luigi Logo
:align: center
.. image:: https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Fspotify%2Fluigi%2Fbadge&label=build&logo=none&%3Fref%3Dmaster&style=flat
:target: https://actions-badge.atrox.dev/spotify/luigi/goto?ref=master
.. image:: https://img.shields.io/codecov/c/github/spotify/luigi/master.svg?style=flat
:target: https://codecov.io/gh/spotify/luigi?branch=master
.. image:: https://img.shields.io/pypi/v/luigi.svg?style=flat
:target: https://pypi.python.org/pypi/luigi
.. image:: https://img.shields.io/pypi/l/luigi.svg?style=flat
:target: https://pypi.python.org/pypi/luigi
.. image:: https://readthedocs.org/projects/luigi/badge/?version=stable
:target: https://luigi.readthedocs.io/en/stable/?badge=stable
:alt: Documentation Status
Luigi is a Python (3.8, 3.9, 3.10, 3.11, 3.12 tested) package that helps you build complex
pipelines of batch jobs. It handles dependency resolution, workflow management,
visualization, handling failures, command line integration, and much more.
Getting Started
---------------
Run ``pip install luigi`` to install the latest stable version from `PyPI
`_. `Documentation for the latest release
`__ is hosted on readthedocs.
Run ``pip install luigi[toml]`` to install Luigi with `TOML-based configs
`__ support.
For the bleeding edge code, ``pip install
git+https://github.com/spotify/luigi.git``. `Bleeding edge documentation
`__ is also available.
Background
----------
The purpose of Luigi is to address all the plumbing typically associated
with long-running batch processes. You want to chain many tasks,
automate them, and failures *will* happen. These tasks can be anything,
but are typically long running things like
`Hadoop `_ jobs, dumping data to/from
databases, running machine learning algorithms, or anything else.
There are other software packages that focus on lower level aspects of
data processing, like `Hive `__,
`Pig `_, or
`Cascading `_. Luigi is not a framework to
replace these. Instead it helps you stitch many tasks together, where
each task can be a `Hive query `__,
a `Hadoop job in Java `_,
a `Spark job in Scala or Python `_,
a Python snippet,
`dumping a table `_
from a database, or anything else. It's easy to build up
long-running pipelines that comprise thousands of tasks and take days or
weeks to complete. Luigi takes care of a lot of the workflow management
so that you can focus on the tasks themselves and their dependencies.
You can build pretty much any task you want, but Luigi also comes with a
*toolbox* of several common task templates that you use. It includes
support for running
`Python mapreduce jobs `_
in Hadoop, as well as
`Hive `__,
and `Pig `__,
jobs. It also comes with
`file system abstractions for HDFS `_,
and local files that ensures all file system operations are atomic. This
is important because it means your data pipeline will not crash in a
state containing partial data.
Visualiser page
---------------
The Luigi server comes with a web interface too, so you can search and filter
among all your tasks.
.. figure:: https://raw.githubusercontent.com/spotify/luigi/master/doc/visualiser_front_page.png
:alt: Visualiser page
Dependency graph example
------------------------
Just to give you an idea of what Luigi does, this is a screen shot from
something we are running in production. Using Luigi's visualiser, we get
a nice visual overview of the dependency graph of the workflow. Each
node represents a task which has to be run. Green tasks are already
completed whereas yellow tasks are yet to be run. Most of these tasks
are Hadoop jobs, but there are also some things that run locally and
build up data files.
.. figure:: https://raw.githubusercontent.com/spotify/luigi/master/doc/user_recs.png
:alt: Dependency graph
Philosophy
----------
Conceptually, Luigi is similar to `GNU
Make `_ where you have certain tasks
and these tasks in turn may have dependencies on other tasks. There are
also some similarities to `Oozie `_
and `Azkaban `_. One major
difference is that Luigi is not just built specifically for Hadoop, and
it's easy to extend it with other kinds of tasks.
Everything in Luigi is in Python. Instead of XML configuration or
similar external data files, the dependency graph is specified *within
Python*. This makes it easy to build up complex dependency graphs of
tasks, where the dependencies can involve date algebra or recursive
references to other versions of the same task. However, the workflow can
trigger things not in Python, such as running
`Pig scripts `_
or `scp'ing files `_.
Who uses Luigi?
---------------
We use Luigi internally at `Spotify `_ to run
thousands of tasks every day, organized in complex dependency graphs.
Most of these tasks are Hadoop jobs. Luigi provides an infrastructure
that powers all kinds of stuff including recommendations, toplists, A/B
test analysis, external reports, internal dashboards, etc.
Since Luigi is open source and without any registration walls, the exact number
of Luigi users is unknown. But based on the number of unique contributors, we
expect hundreds of enterprises to use it. Some users have written blog posts
or held presentations about Luigi:
* `Spotify `_ `(presentation, 2014) `__
* `Foursquare `_ `(presentation, 2013) `__
* `Mortar Data (Datadog) `_ `(documentation / tutorial) `__
* `Stripe `_ `(presentation, 2014) `__
* `Buffer `_ `(blog, 2014) `__
* `SeatGeek `_ `(blog, 2015) `__
* `Treasure Data `_ `(blog, 2015) `__
* `Growth Intelligence `_ `(presentation, 2015) `__
* `AdRoll `_ `(blog, 2015) `__
* 17zuoye `(presentation, 2015) `__
* `Custobar `_ `(presentation, 2016) `__
* `Blendle `_ `(presentation) `__
* `TrustYou `_ `(presentation, 2015) `__
* `Groupon `_ / `OrderUp `_ `(alternative implementation) `__
* `Red Hat - Marketing Operations `_ `(blog, 2017) `__
* `GetNinjas `_ `(blog, 2017) `__
* `voyages-sncf.com `_ `(presentation, 2017) `__
* `Open Targets `_ `(blog, 2017) `__
* `Leipzig University Library `_ `(presentation, 2016) `__ / `(project) `__
* `Synetiq `_ `(presentation, 2017) `__
* `Glossier `_ `(blog, 2018) `__
* `Data Revenue `_ `(blog, 2018) `_
* `Uppsala University `_ `(tutorial) `_ / `(presentation, 2015) `_ / `(slides, 2015) `_ / `(poster, 2015) `_ / `(paper, 2016) `_ / `(project) `_
* `GIPHY `_ `(blog, 2019) `__
* `xtream `__ `(blog, 2019) `__
* `CIAN `__ `(presentation, 2019) `__
Some more companies are using Luigi but haven't had a chance yet to write about it:
* `Schibsted `_
* `enbrite.ly `_
* `Dow Jones / The Wall Street Journal `_
* `Hotels.com `_
* `Newsela `_
* `Squarespace `_
* `OAO `_
* `Grovo `_
* `Weebly `_
* `Deloitte `_
* `Stacktome `_
* `LINX+Neemu+Chaordic `_
* `Foxberry `_
* `Okko `_
* `ISVWorld `_
* `Big Data `_
* `Movio `_
* `Bonnier News `_
* `Starsky Robotics `_
* `BaseTIS `_
* `Hopper `_
* `VOYAGE GROUP/Zucks `_
* `Textpert `_
* `Tracktics `_
* `Whizar `_
* `xtream `__
* `Skyscanner `_
* `Jodel `_
* `Mekar `_
* `M3 `_
* `Assist Digital `_
* `Meltwater `_
* `DevSamurai `_
* `Veridas `_
* `Aidentified `_
We're more than happy to have your company added here. Just send a PR on GitHub.
External links
--------------
* `Mailing List `_ for discussions and asking questions. (Google Groups)
* `Releases `_ (PyPI)
* `Source code `_ (GitHub)
* `Hubot Integration `_ plugin for Slack, Hipchat, etc (GitHub)
Authors
-------
Luigi was built at `Spotify `_, mainly by
`Erik Bernhardsson `_ and
`Elias Freider `_.
`Many other people `_
have contributed since open sourcing in late 2012.
`Arash Rouhani `_ was the chief maintainer from 2015 to 2019, and now
Spotify's Data Team maintains Luigi.
Owner
- Name: Spotify
- Login: spotify
- Kind: organization
- Email: opensource@spotify.com
- Location: Stockholm, Sweden
- Website: https://spotify.github.io/
- Repositories: 278
- Profile: https://github.com/spotify
GitHub Events
Total
- Create event: 2
- Release event: 1
- Issues event: 24
- Watch event: 664
- Delete event: 1
- Issue comment event: 81
- Push event: 17
- Pull request review comment event: 34
- Pull request review event: 55
- Pull request event: 38
- Fork event: 44
Last Year
- Create event: 2
- Release event: 1
- Issues event: 24
- Watch event: 664
- Delete event: 1
- Issue comment event: 81
- Push event: 17
- Pull request review comment event: 34
- Pull request review event: 55
- Pull request event: 38
- Fork event: 44
Committers
Last synced: 9 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Erik Bernhardsson | e****n@s****m | 369 |
| Arash Rouhani | a****h@s****m | 368 |
| Dave Buchfuhrer | b****k@h****m | 204 |
| Elias Freider | f****r@s****m | 123 |
| Guillaume Poulin | p****e@g****m | 91 |
| Dillon Stadther | d****r@g****m | 68 |
| hirosassa | h****a@g****m | 55 |
| Stephen Pascoe | S****e@n****m | 51 |
| Uldis Barbans | u****s@s****m | 47 |
| Alexander Krasnukhin | t****m@g****m | 45 |
| Honnix | h****x | 44 |
| Joe Crobak | j****w@g****m | 29 |
| drowoseque | s****l@p****u | 29 |
| Marcel R | r****a | 28 |
| Joe Crobak | j****e@f****m | 21 |
| Anders Nyman | n****n@s****m | 20 |
| Fabian Alenius | f****n@s****m | 19 |
| Joe Ennever | j****r@f****m | 19 |
| Jakub Kukul | j****b@m****m | 18 |
| Kyle Sun | k****e@h****m | 18 |
| Fabrizio Demaria | f****a@s****m | 17 |
| Babis Kiosidis | c****s@g****m | 16 |
| Claire McGinty | c****m@s****m | 15 |
| Tashrif Billah | 3****h | 15 |
| Erik Bernhardsson | e****n@E****l | 14 |
| Berker Peksag | b****g@g****m | 14 |
| Romain Yon | r****n@s****m | 14 |
| Ran Tavory | r****v@g****m | 13 |
| Alex Brausewetter | a****x@x****e | 13 |
| steenzout | p****o@m****m | 13 |
| and 582 more... | ||
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 105
- Total pull requests: 127
- Average time to close issues: 5 months
- Average time to close pull requests: about 2 months
- Total issue authors: 88
- Total pull request authors: 69
- Average comments per issue: 2.4
- Average comments per pull request: 1.81
- Merged pull requests: 89
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 21
- Pull requests: 35
- Average time to close issues: about 2 months
- Average time to close pull requests: 15 days
- Issue authors: 18
- Pull request authors: 19
- Average comments per issue: 1.1
- Average comments per pull request: 2.09
- Merged pull requests: 25
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- ccmaymay (5)
- Ali-Razmjoo (5)
- starhel (4)
- marinelay (2)
- franckOL (2)
- arteymix (2)
- ttcm3010 (2)
- tashrifbillah (2)
- dlstadther (2)
- MrityunjoyS (2)
- marhoy (1)
- simonpicard (1)
- yuribak (1)
- aykhuss (1)
- weaversam8 (1)
Pull Request Authors
- starhel (12)
- hirosassa (9)
- Ali-Razmjoo (8)
- hiro-o918 (5)
- dlstadther (5)
- eltociear (5)
- RRap0so (5)
- pablocasares (4)
- honnix (4)
- bcamel (4)
- andresgomezfrr (4)
- mateka (4)
- ccmaymay (4)
- kitagry (4)
- mzpqnxow (3)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 5
-
Total downloads:
- pypi 1,008,997 last-month
- Total docker downloads: 411
-
Total dependent packages: 41
(may contain duplicates) -
Total dependent repositories: 607
(may contain duplicates) - Total versions: 162
- Total maintainers: 15
- Total advisories: 2
pypi.org: luigi
Workflow mgmgt + task scheduling + dependency resolution.
- Homepage: https://github.com/spotify/luigi
- Documentation: https://luigi.readthedocs.io/
- License: Apache License 2.0
-
Latest release: 3.6.0
published about 1 year ago
Rankings
Maintainers (14)
Advisories (2)
proxy.golang.org: github.com/spotify/luigi
- Documentation: https://pkg.go.dev/github.com/spotify/luigi#section-documentation
- License: apache-2.0
-
Latest release: v3.6.0+incompatible
published about 1 year ago
Rankings
conda-forge.org: luigi
- Homepage: https://github.com/spotify/luigi
- License: Apache-2.0
-
Latest release: 3.1.1
published over 3 years ago
Rankings
spack.io: py-luigi
Workflow mgmgt + task scheduling + dependency resolution
- Homepage: https://github.com/spotify/luigi
- License: []
-
Latest release: 3.2.0
published about 3 years ago
Rankings
Maintainers (1)
anaconda.org: luigi
Luigi handles dependency resolution, workflow management, visualization, handling failures, command line integration, and much more. It also comes with Hadoop support built in.
- Homepage: https://github.com/spotify/luigi
- License: Apache-2.0
-
Latest release: 3.6.0
published 8 months ago