Skip to content
Snippets Groups Projects

Finalize migration BackfillBoardsEpicUserPreferencesGroupId

This migration was finished at `2024-05-30 14: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 1000554
```

The last time this background migration was triggered was in [db/post_migrate/20240521094917_queue_backfill_boards_epic_user_preferences_group_id.rb](https://gitlab.com/gitlab-org/gitlab/-/blob/master/db/post_migrate/20240521094917_queue_backfill_boards_epic_user_preferences_group_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
parent 66c6c05f
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -5,4 +5,4 @@ feature_category: portfolio_management
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/153684
milestone: '17.1'
queued_migration_version: 20240521094917
finalized_by: # version of the migration that finalized this BBM
finalized_by: '20241015232221'
# frozen_string_literal: true
class FinalizeBackfillBoardsEpicUserPreferencesGroupId < 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: 'BackfillBoardsEpicUserPreferencesGroupId',
table_name: :boards_epic_user_preferences,
column_name: :id,
job_arguments: [:group_id, :epics, :group_id, :epic_id],
finalize: true
)
end
def down; end
end
63f617491241ac99c8247c6c97f729bdb437761b55fb00c23f57677ed24bf6fc
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment