Handle repository creations, deletions and renames atomically
-
Review changes -
-
Download -
Patches
-
Plain diff
Renaming, creating and deleting repositories is racy in Praefect. They can also partially fail in awkward ways due to Praefect first applying the operations on the disks of the Gitalys and later updating its metadata store. In order to make these operations atomic, there's been ongoing work in the background to make it possible to perform these in the database in a manner that races are not possible and partial failures do not end up conflicting with future operations.
Renames can be fixed by doing the rename atomically in the database without moving any repositories on the disks.
Deletes can be modeled as simply deleting the repository's database record.
Creates are atomic by creating the repository's database record as the last step in the process.
The last piece of the puzzle is to ensure repositories always land in different directories on the disk. This ensures that a partial failure doesn't block a future operation from succeeding. This commit implements that piece by deriving a unique path for each repository to store their replicas. Existing repositories stay where they are but newly created repositories will land in unique directories.
Create might succeed on a disk but fail to be persisted in the database. Prior to this change, attempting to recreate a repository might fail due to the stale state on the disk. With this in place, the next attempt at creating the repository would still succeed as the new attempt would land the repository in a different directory on the disk.
Deletes have the same problem prior to this commit. The repository's metadata may be successfully deleted but if we fail to delete the repository from the disk, future creations and renames may fail if they conflict with the stale state. As creates now always land in a different directory, the stale state no longer causes problems.
Renames will work purely in the database, so any stale state on the disk will not affect them.
Closes #3485 (closed)
Closes #4003 (closed)
Merge request reports
- version 519e4cf727
- version 509c0c55cf
- version 49e21b4b93
- version 48a79c87c4
- version 475a0ff13d
- version 46ef73972d
- version 459721b726
- version 44bec77794
- version 437240520a
- version 4216e6d071
- version 417a158bc5
- version 40b5793c70
- version 390c0332ed
- version 380c0332ed
- version 37d16552a8
- version 36b89f7102
- version 35abb88886
- version 34b2c7831a
- version 3344183a48
- version 32a9f56b4f
- version 3193ab1f00
- version 304c7a11b3
- version 29906bc813
- version 282c108fea
- version 2781986b76
- version 26668d4de9
- version 25aaba6595
- version 2451a2e7a1
- version 2370a8ee14
- version 22c666a87b
- version 21a3d772c6
- version 20f7487227
- version 19c53a825b
- version 185fa06e44
- version 1716e4aeb6
- version 16a767ff31
- version 151a5dcc5c
- version 1405257cc3
- version 1321d107b7
- version 1222db64f3
- version 11badaca4a
- version 100543a05d
- version 90ff00070
- version 820749b3d
- version 7b3c07f81
- version 6d083596c
- version 5394f8584
- version 494e95949
- version 3c9b4ea0d
- version 247b1dc25
- version 149a07179
- master (base)
- latest version9c19ad667 commits,
- version 519e4cf7277 commits,
- version 509c0c55cf9 commits,
- version 49e21b4b939 commits,
- version 48a79c87c49 commits,
- version 475a0ff13d9 commits,
- version 46ef73972d9 commits,
- version 459721b7269 commits,
- version 44bec777949 commits,
- version 437240520a9 commits,
- version 4216e6d0719 commits,
- version 417a158bc59 commits,
- version 40b5793c708 commits,
- version 390c0332ed6 commits,
- version 380c0332ed8 commits,
- version 37d16552a86 commits,
- version 36b89f71026 commits,
- version 35abb888866 commits,
- version 34b2c7831a25 commits,
- version 3344183a4825 commits,
- version 32a9f56b4f25 commits,
- version 3193ab1f0025 commits,
- version 304c7a11b325 commits,
- version 29906bc81325 commits,
- version 282c108fea15 commits,
- version 2781986b7615 commits,
- version 26668d4de915 commits,
- version 25aaba659514 commits,
- version 2451a2e7a114 commits,
- version 2370a8ee1410 commits,
- version 22c666a87b8 commits,
- version 21a3d772c68 commits,
- version 20f74872278 commits,
- version 19c53a825b8 commits,
- version 185fa06e448 commits,
- version 1716e4aeb67 commits,
- version 16a767ff316 commits,
- version 151a5dcc5c6 commits,
- version 1405257cc36 commits,
- version 1321d107b76 commits,
- version 1222db64f37 commits,
- version 11badaca4a7 commits,
- version 100543a05d7 commits,
- version 90ff000706 commits,
- version 820749b3d12 commits,
- version 7b3c07f8112 commits,
- version 6d083596c7 commits,
- version 5394f85847 commits,
- version 494e959497 commits,
- version 3c9b4ea0d7 commits,
- version 247b1dc256 commits,
- version 149a071795 commits,
- Side-by-side
- Inline