Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-01-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-10Fix typo in repository storage types docMarcel Amirault
2019-08-26Remove the object pools feature flagZeger-Jan van de Weg
The flag defaulted to true, so there's no change unless users turned it off. Given there's a lack of issues regarding object pools, this should be OK.
2019-08-23Update capitalization in admin, api, othersMarcel Amirault
Update capitalization in /administration, /api, /ci and /customization
2019-07-19Update numbered lists for docs standardsMarcel Amirault
Ensure that all numbered lists use only 1. and no other numbers. Also ensure that numbered lists use proper spacing.
2019-07-09Enable repository object pools by defaultJames Ramsay
Object pools allow Git objects to be shared from the parent project to forks, reducing storage requirements.
2019-07-09Remove extra whitespaces in docsMarcel Amirault
Removes all the extra whitespaces at end of lines, inside tags, and removes extra newlines
2019-06-17Hashed Storage is enabled by default on new installationsGabriel Mazetto
updated documentation for Geo
2019-06-12Update git object deduplication overviewJacob Vosmaer
2019-05-05Docs: Merge Misc EE doc/administration files and dirs to CEMarcel Amirault
2019-04-13Complete "Repository storage" directionsKatrin Leinweber
2019-03-27Docs: Fix more anchors, mostly pipeline relatedMarcel Amirault
2019-03-20Add beta caution to hashed object poolsJames Ramsay
2019-03-15Document Storage Rollback mechanismGabriel Mazetto
Updated Rake-specific documentation to include storage rollback, and improved migration and rollback instructions.
2019-02-18Remove consecutive blank lines from markdown filesEvan Read
For the sake of consistency, removes any extraneous consecutive blank lines from the doc suite.
2019-01-08Make unordered lists conform to styleguideEvan Read
- Also makes other minor Markdown fixes that were near the main fixes.
2018-12-07Allow public forks to be deduplicatedZeger-Jan van de Weg
When a project is forked, the new repository used to be a deep copy of everything stored on disk by leveraging `git clone`. This works well, and makes isolation between repository easy. However, the clone is at the start 100% the same as the origin repository. And in the case of the objects in the object directory, this is almost always going to be a lot of duplication. Object Pools are a way to create a third repository that essentially only exists for its 'objects' subdirectory. This third repository's object directory will be set as alternate location for objects. This means that in the case an object is missing in the local repository, git will look in another location. This other location is the object pool repository. When Git performs garbage collection, it's smart enough to check the alternate location. When objects are duplicated, it will allow git to throw one copy away. This copy is on the local repository, where to pool remains as is. These pools have an origin location, which for now will always be a repository that itself is not a fork. When the root of a fork network is forked by a user, the fork still clones the full repository. Async, the pool repository will be created. Either one of these processes can be done earlier than the other. To handle this race condition, the Join ObjectPool operation is idempotent. Given its idempotent, we can schedule it twice, with the same effect. To accommodate the holding of state two migrations have been added. 1. Added a state column to the pool_repositories column. This column is managed by the state machine, allowing for hooks on transitions. 2. pool_repositories now has a source_project_id. This column in convenient to have for multiple reasons: it has a unique index allowing the database to handle race conditions when creating a new record. Also, it's nice to know who the host is. As that's a short link to the fork networks root. Object pools are only available for public project, which use hashed storage and when forking from the root of the fork network. (That is, the project being forked from itself isn't a fork) In this commit message I use both ObjectPool and Pool repositories, which are alike, but different from each other. ObjectPool refers to whatever is on the disk stored and managed by Gitaly. PoolRepository is the record in the database.
2018-10-18Update repository_storage_types.mdJohn Jarvis
2018-08-12fix hashed storage readiness linkBen Bodenmiller
2018-08-03Resolve "Hashed storage: extend "Enable hashed storage for all new projects" ↵Valery Sizov
to "for all new and renamed projects""
2018-06-27Improve Hashed Storage documentation for rollbackGabriel Mazetto
Fixed storage coverage table with additional information and wrote down implementationd details from few entities.
2018-02-08Backport EE changes to some hashed storage documentation to CENick Thomas
2018-02-02search and replace EES, EEP, EEU with Starter, Premium, UltimateMarcia Ramos
2017-11-08Added file storage documentation and updated hash storage oneGabriel Mazetto
2017-11-01Fix typoMichael Kozono
2017-10-30Document existing storable objects and their status regarding Hashed storageGabriel Mazetto
2017-09-28Add support to migrate existing projects to Hashed Storage asyncGabriel Mazetto