Skip to content
Snippets Groups Projects
Verified Commit 892b0b38 authored by gdk's avatar gdk Committed by Martin Čavoj
Browse files

Finalize BackfillComplianceFrameworkSecurityPoliciesNamespaceId

This migration was finished at `2024-08-12 03:46:04 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 1000642
```

The last time this background migration was triggered was in [db/post_migrate/20240722095920_queue_backfill_compliance_framework_security_policies_namespace_id.rb](https://gitlab.com/gitlab-org/gitlab/-/blob/master/db/post_migrate/20240722095920_queue_backfill_compliance_framework_security_policies_namespace_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 2138710c
No related branches found
No related tags found
2 merge requests!170053Security patch upgrade alert: Only expose to admins 17-4,!168886Finalize BackfillComplianceFrameworkSecurityPoliciesNamespaceId
---
migration_job_name: BackfillComplianceFrameworkSecurityPoliciesNamespaceId
description: Backfills sharding key `compliance_framework_security_policies.namespace_id` from `security_orchestration_policy_configurations`.
description: Backfills sharding key `compliance_framework_security_policies.namespace_id`
from `security_orchestration_policy_configurations`.
feature_category: security_policy_management
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/160211
milestone: '17.3'
queued_migration_version: 20240722095920
finalized_by: # version of the migration that finalized this BBM
finalized_by: '20241010232231'
# frozen_string_literal: true
class FinalizeBackfillComplianceFrameworkSecurityPoliciesNamespaceId < Gitlab::Database::Migration[2.2]
milestone '17.5'
disable_ddl_transaction!
restrict_gitlab_migration gitlab_schema: :gitlab_main_cell
def up
ensure_batched_background_migration_is_finished(
job_class_name: 'BackfillComplianceFrameworkSecurityPoliciesNamespaceId',
table_name: :compliance_framework_security_policies,
column_name: :id,
job_arguments: [:namespace_id, :security_orchestration_policy_configurations, :namespace_id,
:policy_configuration_id],
finalize: true
)
end
def down; end
end
52bbaeebdf744bc49edfdb4451e8a7a32b795b50b16770363974fb719ea474e5
\ 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