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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2023-02-16 10:57:50 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2023-02-16 10:57:50 +0300
commit2111df234b1a053c159683c4446953d0952e8ece (patch)
treec5e52ef1c47a014b4c8fe01e5efc1116a90839d8
parentf223d8cbcb6319356cb9f746252b15e541695d2f (diff)
housekeeping: Enable writing MIDX by default
We have recently introduced the logic to write multi-pack indices during repository maintenance. This new data structure allows Git to look up objects more efficiently when there are many packfiles in a repository by providing an index that spans across all the packfiles. The code has been rolled out to production systems without any observed issues. As this is a significant new data structure though we're playing it safe and release the feature with its flag default enabled. Changelog: changed
-rw-r--r--internal/metadata/featureflag/ff_write_multi_pack_index.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/metadata/featureflag/ff_write_multi_pack_index.go b/internal/metadata/featureflag/ff_write_multi_pack_index.go
index 9f2565788..3622dd31a 100644
--- a/internal/metadata/featureflag/ff_write_multi_pack_index.go
+++ b/internal/metadata/featureflag/ff_write_multi_pack_index.go
@@ -6,5 +6,5 @@ var WriteMultiPackIndex = NewFeatureFlag(
"write_multi_pack_index",
"v15.9.0",
"https://gitlab.com/gitlab-org/gitaly/-/issues/4741",
- false,
+ true,
)