- 09 Apr, 2020 2 commits
-
-
GitLab Bot authored
-
GitLab Bot authored
-
- 31 Mar, 2020 1 commit
-
-
GitLab Bot authored
-
- 20 Mar, 2020 1 commit
-
-
GitLab Bot authored
-
- 18 Mar, 2020 1 commit
-
-
GitLab Bot authored
-
- 17 Mar, 2020 1 commit
-
-
GitLab Bot authored
-
- 12 Mar, 2020 2 commits
-
-
GitLab Bot authored
-
GitLab Bot authored
-
- 10 Mar, 2020 1 commit
-
-
GitLab Bot authored
-
- 02 Mar, 2020 1 commit
-
-
GitLab Bot authored
-
- 25 Feb, 2020 1 commit
-
-
GitLab Bot authored
-
- 19 Feb, 2020 1 commit
-
-
GitLab Bot authored
-
- 17 Feb, 2020 1 commit
-
-
GitLab Bot authored
-
- 11 Feb, 2020 1 commit
-
-
GitLab Bot authored
-
- 05 Feb, 2020 1 commit
-
-
GitLab Bot authored
-
- 31 Jan, 2020 1 commit
-
-
GitLab Bot authored
-
- 24 Jan, 2020 2 commits
-
-
GitLab Bot authored
-
GitLab Bot authored
-
- 10 Jan, 2020 1 commit
-
-
GitLab Bot authored
-
- 09 Jan, 2020 2 commits
-
-
GitLab Bot authored
-
GitLab Bot authored
-
- 03 Jan, 2020 1 commit
-
-
GitLab Bot authored
-
- 19 Nov, 2019 1 commit
-
-
GitLab Bot authored
-
- 30 Oct, 2019 1 commit
-
-
GitLab Bot authored
-
- 18 Oct, 2019 1 commit
-
-
GitLab Bot authored
-
- 18 Jul, 2019 1 commit
-
-
Andrew Newdigate authored
This allows the chaos endpoints to be invoked in Sidekiq so that this environment can be tested for resilience.
-
- 10 Jul, 2019 1 commit
-
-
Mayra Cabrera authored
Suggests to use a JSON structured log instead Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/54102
-
- 05 Jul, 2019 1 commit
-
-
Douwe Maan authored
-
- 29 May, 2019 2 commits
-
-
Sam Bigelow authored
-
Igor Drozdov authored
-
- 10 Apr, 2019 1 commit
-
-
Martin Wortschack authored
- email_receiver_worker - object_storage/migrate_uploads_worker - Update PO file
-
- 13 Mar, 2019 1 commit
-
-
Nick Thomas authored
-
- 07 Dec, 2018 1 commit
-
-
Zeger-Jan van de Weg authored
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.
-
- 27 Nov, 2018 1 commit
-
-
Tiago Botelho authored
Clears the import related columns and code from the Project model over to the ProjectImportState model
-
- 11 Sep, 2018 1 commit
-
-
Yorick Peterse authored
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
-
- 06 Sep, 2018 1 commit
-
-
Mayra Cabrera authored
-
- 29 Aug, 2018 1 commit
-
-
Jacopo authored
-
- 30 Jul, 2018 1 commit
-
-
Jarka Kadlecová authored
-
- 22 Jul, 2018 1 commit
-
-
gfyoung authored
Enables frozen string for new files in directories that had been previously covered in previous MR's. Partially addresses #47424.
-
- 27 Jun, 2018 1 commit
-
-
Toon Claes authored
There is only 1 `HEALTHY_SHARD_CHECKS` used: Gitlab::HealthChecks::GitalyCheck So we can simplify code to get the list of healthy shard names.
-