summaryrefslogtreecommitdiff
path: root/doc/administration/housekeeping.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/administration/housekeeping.md')
-rw-r--r--doc/administration/housekeeping.md75
1 files changed, 7 insertions, 68 deletions
diff --git a/doc/administration/housekeeping.md b/doc/administration/housekeeping.md
index 584f06ef537..e1b26595bc4 100644
--- a/doc/administration/housekeeping.md
+++ b/doc/administration/housekeeping.md
@@ -34,7 +34,7 @@ Gitaly can perform housekeeping tasks in a Git repository in two ways:
The "eager" housekeeping strategy executes housekeeping tasks in a repository
independent of the repository state. This is the default strategy as used by the
-[manual trigger](#manual-trigger) and the [push-based trigger](#push-based-trigger).
+[manual trigger](#manual-trigger) and the push-based trigger.
The eager housekeeping strategy is controlled by the GitLab application.
Depending on the trigger that caused the housekeeping job to run, GitLab asks
@@ -45,20 +45,14 @@ be slow.
### Heuristical housekeeping
-> - [Introduced](https://gitlab.com/gitlab-org/gitaly/-/issues/2634) in GitLab 14.9 for the [manual trigger](#manual-trigger) and the [push-based trigger](#push-based-trigger) [with a flag](feature_flags.md) named `optimized_housekeeping`. Enabled by default.
+> - [Introduced](https://gitlab.com/gitlab-org/gitaly/-/issues/2634) in GitLab 14.9 for the [manual trigger](#manual-trigger) and the push-based trigger [with a flag](feature_flags.md) named `optimized_housekeeping`. Enabled by default.
> - [Enabled on GitLab.com](https://gitlab.com/gitlab-org/gitlab/-/issues/353607) in GitLab 14.10.
-
-FLAG:
-On self-managed GitLab, by default this feature is available. To hide the feature, ask an administrator to [disable the feature flag](feature_flags.md) named `optimize_repository`.
-
-To make it available, ask an administrator to [enable the feature flag](feature_flags.md) named `optimized_housekeeping`.
+> - [Generally available](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/107661) in GitLab 15.8. Feature flag `optimized_housekeeping` removed.
The heuristical (or "opportunistic") housekeeping strategy analyzes the
repository's state and executes housekeeping tasks only when it finds one or
more data structures are insufficiently optimized. This is the strategy used by
-[scheduled housekeeping](#scheduled-housekeeping). It can optionally be enabled
-for the [manual trigger](#manual-trigger) and the [push-based trigger](#push-based-trigger)
-by enabling the `optimized_housekeeping` feature flag.
+[scheduled housekeeping](#scheduled-housekeeping).
Heuristical housekeeping uses the following information to decide on the tasks
it needs to run:
@@ -99,7 +93,7 @@ There are different ways in which GitLab runs housekeeping tasks:
- A project's administrator can [manually trigger](#manual-trigger) repository
housekeeping tasks.
-- GitLab can automatically schedule housekeeping tasks [after a number of Git pushes](#push-based-trigger).
+- GitLab can automatically schedule housekeeping tasks after a number of Git pushes.
- GitLab can [schedule a job](#scheduled-housekeeping) that runs housekeeping
tasks for all repositories in a configurable time frame.
@@ -120,65 +114,10 @@ To trigger housekeeping tasks manually:
1. Select **Run housekeeping**.
This starts an asynchronous background worker for the project's repository. The
-background worker executes `git gc`, which performs a number of optimizations.
-
-<!--- start_remove The following content will be removed on remove_date: '2023-04-22' -->
-
-### Push-based trigger
-
-FLAG:
-On self-managed GitLab, by default this feature is not available and superseded by [heuristical housekeeping](#heuristical-housekeeping). It is planned to be removed in 15.8. To enable the feature, ask an administrator to [disable the feature flag](feature_flags.md) named `optimize_repository`.
-
-GitLab automatically runs repository housekeeping tasks after a configured
-number of pushes:
-
-- [`git gc`](https://git-scm.com/docs/git-gc) runs a number of housekeeping tasks such as:
- - Compressing Git objects to reduce disk space and increase performance.
- - Removing unreachable objects that may have been created from changes to the repository, like force-overwriting branches.
-- [`git repack`](https://git-scm.com/docs/git-repack) either:
- - Runs an incremental repack, according to a [configured period](#configure-push-based-maintenance). This
- packs all loose objects into a new packfile and prunes the now-redundant loose objects.
- - Runs a full repack, according to a [configured period](#configure-push-based-maintenance). This repacks all
- packfiles and loose objects into a single new packfile, and deletes the old now-redundant loose
- objects and packfiles. It also optionally creates bitmaps for the new packfile.
-- [`git pack-refs`](https://git-scm.com/docs/git-pack-refs) compresses references
- stored as loose files into a single file.
-
-#### Configure push-based maintenance
-
-You can change how often these tasks run when pushes occur, or you can turn
-them off entirely:
-
-1. On the top bar, select **Main menu > Admin**.
-1. On the left sidebar, select **Settings > Repository**.
-1. Expand **Repository maintenance**.
-1. In the **Housekeeping** section, configure the housekeeping options.
-1. Select **Save changes**.
-
-The following housekeeping options are available:
-
-- **Enable automatic repository housekeeping**: Regularly run housekeeping tasks. If you
- keep this setting disabled for a long time, Git repository access on your GitLab server becomes
- slower and your repositories use more disk space.
-- **Incremental repack period**: Number of Git pushes after which an incremental `git repack` is
- run.
-- **Full repack period**: Number of Git pushes after which a full `git repack` is run.
-- **Git GC period**: Number of Git pushes after which `git gc` is run.
-
-As an example, see the following scenario:
-
-- Incremental repack period: 10.
-- Full repack period: 50.
-- Git GC period: 200.
-
-When the:
-
-- `pushes_since_gc` value is 50, a `repack -A -l -d --pack-kept-objects` runs.
-- `pushes_since_gc` value is 200, a `git gc` runs.
+background worker asks Gitaly to perform a number of optimizations.
Housekeeping also [removes unreferenced LFS files](../raketasks/cleanup.md#remove-unreferenced-lfs-files)
-from your project on the same schedule as the `git gc` operation, freeing up storage space for your
-project.
+from your project every `200` push, freeing up storage space for your project.
### Scheduled housekeeping