From 71acdb27fbf881ab9b439a1212815be9862db8ab Mon Sep 17 00:00:00 2001
From: gdk <gdk@example.com>
Date: Thu, 31 Oct 2024 23:23:59 +0000
Subject: [PATCH] Finalize migration BackfillWikiRepositoryStatesProjectId

This migration was finished at `2024-04-30 18:59:02 UTC`, you can confirm
the status using our
[batched background migration chatops commands](https://docs.gitlab.com/ee/development/database/batched_background_migrations.html#monitor-the-progress-and-status-of-a-batched-background-migration).
  To confirm it is finished you can run:

  ```
/chatops run batched_background_migrations status 1000506
```

The last time this background migration was triggered was in [db/post_migrate/20240419035620_queue_backfill_wiki_repository_states_project_id.rb](https://gitlab.com/gitlab-org/gitlab/-/blob/master/db/post_migrate/20240419035620_queue_backfill_wiki_repository_states_project_id.rb)

  You can read more about the process for finalizing batched background migrations in
https://docs.gitlab.com/ee/development/database/batched_background_migrations.html .

  As part of our process we want to ensure all batched background migrations have had at least one
[required stop](https://docs.gitlab.com/ee/development/database/required_stops.html)
to process the migration. Therefore we can finalize any batched background migration that was added before the
last required stop.

This change was generated by
[gitlab-housekeeper](https://gitlab.com/gitlab-org/gitlab/-/tree/master/gems/gitlab-housekeeper)
using the Keeps::OverdueFinalizeBackgroundMigration keep.

To provide feedback on your experience with `gitlab-housekeeper` please create an issue with the
label ~"GitLab Housekeeper" and consider pinging the author of this keep.

Changelog: other
---
 ...fill_wiki_repository_states_project_id.yml |  2 +-
 ...kfill_wiki_repository_states_project_id.rb | 21 +++++++++++++++++++
 db/schema_migrations/20241031232349           |  1 +
 3 files changed, 23 insertions(+), 1 deletion(-)
 create mode 100644 db/post_migrate/20241031232349_finalize_backfill_wiki_repository_states_project_id.rb
 create mode 100644 db/schema_migrations/20241031232349

diff --git a/db/docs/batched_background_migrations/backfill_wiki_repository_states_project_id.yml b/db/docs/batched_background_migrations/backfill_wiki_repository_states_project_id.yml
index a4d56248c0e81..ddabe4b888f89 100644
--- a/db/docs/batched_background_migrations/backfill_wiki_repository_states_project_id.yml
+++ b/db/docs/batched_background_migrations/backfill_wiki_repository_states_project_id.yml
@@ -5,4 +5,4 @@ feature_category: geo_replication
 introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/150076
 milestone: '17.0'
 queued_migration_version: 20240419035620
-finalized_by: # version of the migration that finalized this BBM
+finalized_by: '20241031232349'
diff --git a/db/post_migrate/20241031232349_finalize_backfill_wiki_repository_states_project_id.rb b/db/post_migrate/20241031232349_finalize_backfill_wiki_repository_states_project_id.rb
new file mode 100644
index 0000000000000..dc01119f72a5f
--- /dev/null
+++ b/db/post_migrate/20241031232349_finalize_backfill_wiki_repository_states_project_id.rb
@@ -0,0 +1,21 @@
+# frozen_string_literal: true
+
+class FinalizeBackfillWikiRepositoryStatesProjectId < Gitlab::Database::Migration[2.2]
+  milestone '17.6'
+
+  disable_ddl_transaction!
+
+  restrict_gitlab_migration gitlab_schema: :gitlab_main_cell
+
+  def up
+    ensure_batched_background_migration_is_finished(
+      job_class_name: 'BackfillWikiRepositoryStatesProjectId',
+      table_name: :wiki_repository_states,
+      column_name: :id,
+      job_arguments: [:project_id, :project_wiki_repositories, :project_id, :project_wiki_repository_id],
+      finalize: true
+    )
+  end
+
+  def down; end
+end
diff --git a/db/schema_migrations/20241031232349 b/db/schema_migrations/20241031232349
new file mode 100644
index 0000000000000..a25516efb059b
--- /dev/null
+++ b/db/schema_migrations/20241031232349
@@ -0,0 +1 @@
+7ef8926bdc64d6faba36f2ba2a1530b248b82ccaf1871b139af94bc2327180a3
\ No newline at end of file
-- 
GitLab