In
version-control systems, a monorepo ("
mono
Mono may refer to:
Common meanings
* Infectious mononucleosis, "the kissing disease"
* Monaural, monophonic sound reproduction, often shortened to mono
* Mono-, a numerical prefix representing anything single
Music Performers
* Mono (Japanese ...
" meaning 'single' and "repo" being short for '
repository
Repository may refer to:
Archives and online databases
* Content repository, a database with an associated set of data management tools, allowing application-independent access to the content
* Disciplinary repository (or subject repository), a ...
') is a software-development strategy in which the code for a number of projects is stored in the same repository. This practice dates back to at least the early 2000s,
when it was commonly called a shared codebase.
Google
Google LLC () is an American Multinational corporation, multinational technology company focusing on Search Engine, search engine technology, online advertising, cloud computing, software, computer software, quantum computing, e-commerce, ar ...
,
Meta
Meta (from the Greek μετά, '' meta'', meaning "after" or "beyond") is a prefix meaning "more comprehensive" or "transcending".
In modern nomenclature, ''meta''- can also serve as a prefix meaning self-referential, as a field of study or ende ...
,
Microsoft
Microsoft Corporation is an American multinational corporation, multinational technology company, technology corporation producing Software, computer software, consumer electronics, personal computers, and related services headquartered at th ...
,
Uber
Uber Technologies, Inc. (Uber), based in San Francisco, provides mobility as a service, ride-hailing (allowing users to book a car and driver to transport them in a way similar to a taxi), food delivery ( Uber Eats and Postmates), pack ...
,
Airbnb
Airbnb, Inc. ( ), based in San Francisco, California, operates an online marketplace focused on short-term homestays and experiences. The company acts as a broker and charges a commission from each booking. The company was founded in 2008 by ...
, and
Twitter
Twitter is an online social media and social networking service owned and operated by American company Twitter, Inc., on which users post and interact with 280-character-long messages known as "tweets". Registered users can post, like, and ...
all employ very large monorepos with varying strategies to scale
build systems and version control software with a large volume of code and daily changes.
A related concept is the
monolithic application
In software engineering, a monolithic application describes a single-tiered software application in which the user interface and data access code are combined into a single program from a single platform.
A monolithic application is self-contained ...
, but whereas a monolith combines its sub-projects into one large project, a monorepo may contain multiple independent projects.
Advantages
There are a number of potential advantages to a monorepo over individual repositories:
; Ease of code reuse
: Similar functionality or communication protocols can be abstracted into shared libraries and directly included by projects, without the need of a dependency
package manager
A package manager or package-management system is a collection of software tools that automates the process of installing, upgrading, configuring, and removing computer programs for a computer in a consistent manner.
A package manager deals w ...
.
; Simplified dependency management
: In a multiple repository environment where multiple projects depend on a third-party dependency, that dependency might be downloaded or built multiple times. In a monorepo the build can be easily optimized, as referenced dependencies all exist in the same codebase.
;
Atomic commits
: When projects that work together are contained in separate repositories, releases need to sync which versions of one project work with the other. And in large enough projects, managing compatible versions between dependencies can become
dependency hell Dependency hell is a colloquial term for the frustration of some software users who have installed software packages which have dependencies on specific versions of other software packages.
The dependency issue arises when several packages have ...
.
In a monorepo this problem can be negated, since developers may change multiple projects atomically.
; Large-scale
code refactoring
In computer programming and software design, code refactoring is the process of restructuring existing computer code—changing the '' factoring''—without changing its external behavior. Refactoring is intended to improve the design, structu ...
: Since developers have access to the entire project, refactors can ensure that every piece of the project continues to function after a refactor.
; Collaboration across teams
: In a monorepo that uses source dependencies (dependencies that are compiled from source),
teams can improve projects being worked on by other teams. This leads to flexible code ownership.
Limitations and disadvantages
; Loss of version information
: Although not required, some monorepo builds use one version number across all projects in the repository. This leads to a loss of per-project
semantic versioning
Software versioning is the process of assigning either unique ''version names'' or unique ''version numbers'' to unique states of computer software. Within a given version number category (e.g., major or minor), these numbers are generally assig ...
.
; Lack of per-project access control
: With split repositories, access to a repository can be granted based upon need. A monorepo allows read access to all software in the project, possibly presenting new security issues.
Note that there are versioning systems in which this limitation is not an issue. For example, when
Subversion
Subversion () refers to a process by which the values and principles of a system in place are contradicted or reversed in an attempt to transform the established social order and its structures of power, authority, hierarchy, and social norms. Sub ...
is used, it's possible to download any part of the repo (even a single directory), and path-based authorization can be used to restrict access to certain parts of a repository.
; More storage needed by default
: With split repositories, you fetch only the project you are interested in by default. With a monorepo, you check out all projects by default. This can take up a significant amount of storage space. While all versioning systems have a mechanism to do a partial checkout, doing so defeats some of the advantages of a monorepo.
Scalability challenges
Companies with large projects have come across hurdles with monorepos, specifically concerning build tools and version control systems.
Google's monorepo, speculated to be the largest in the world, meets the classification of an
ultra-large-scale system and must handle tens of thousands of contributions every day in a repository over 80 terabytes in size.
Scaling version control software
Companies using or switching to existing version control software found that software could not efficiently handle the amount of data required for a large monorepo. Facebook and Microsoft chose to contribute to or fork existing version control software
Mercurial
Mercurial is a distributed revision control tool for software developers. It is supported on Microsoft Windows and Unix-like systems, such as FreeBSD, macOS, and Linux.
Mercurial's major design goals include high performance and scalabilit ...
and
Git
Git () is a distributed version control system: tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code during software development. Its goals include speed, data integ ...
respectively, while Google eventually created their own version control system.
For more than ten years, Google had relied on
Perforce
Perforce, legally Perforce Software, Inc., is an American developer of software used for developing and running applications, including version control software, web-based repository management, developer collaboration, application lifecycle mana ...
hosted on a single machine. In 2005 Google's build servers could get locked up to 10 minutes at a time. Google improved this to 30 seconds–1 minute in 2010. Due to scaling issues, Google eventually developed its own in-house distributed version control system dubbed Piper.
Facebook ran into performance issues with the version control system Mercurial and made
upstream contributions to the client, and in January 2014 made it faster than a competing solution in Git.
In May 2017 Microsoft announced that virtually all of its Windows engineers use a Git monorepo.
In the transition, Microsoft made substantial upstream contributions to the Git client to remove unnecessary file access and improve handling of large files with
Virtual File System for Git
Virtual File System for Git (VFS for Git), developed by Microsoft, is an extension to the Git version control system.
Overview
VFS for Git is designed to ease the handling of enterprise-scale Git repositories, such as the Microsoft Windows opera ...
.
Scaling build software
Few build tools work well in a monorepo,
and flows where
build
Build may refer to:
* Engineering something
* Construction
* Physical body stature, especially muscle size; usually of the human body
* Build (game engine), a 1995 first-person shooter engine
* "Build" (song), a 1987 song by The Housemartins
* ...
s and
continuous integration testing of the entire repository are performed upon check-in will cause performance problems.
Directed graph
In mathematics, and more specifically in graph theory, a directed graph (or digraph) is a graph that is made up of a set of vertices connected by directed edges, often called arcs.
Definition
In formal terms, a directed graph is an ordered pai ...
builds systems like
Buck
Buck may refer to:
Common meanings
* A colloquialism for a dollar or similar currency
* An adult male in some animal species - see List of animal names
* Derby shoes, nicknamed "bucks" for the common use of buckskin in their making
People
*Buck ( ...
,
Bazel
Bazel is a village in Belgium, in the municipality of Kruibeke in the province of East Flanders. The village is home to the Wissekerke Castle. The municipality of Bazel merged into Kruibeke in 1977.
Overview
The parish church was founded in the ...
,
Pants
Trousers (British English), slacks, or pants are an item of clothing worn from the waist to anywhere between the knees and the ankles, covering both legs separately (rather than with cloth extending across both legs as in robes, skirts, and ...
, and
Please solve this by compartmentalizing builds and tests to the active area of development.
Twitter began development of Pants in 2011, as both Facebook's Buck and Google's Bazel were closed-source at the time.
Twitter open-sourced Pants in 2012 under the Apache 2.0 License.
Please, a
Go-based build system, was developed in 2016 by Thought Machine who was also inspired by Google's Bazel and dissatisfied with Facebook's Buck.
References
{{Version control software
Version control
Software development process