debian-mirror-gitlab/lib/tasks/gitlab/db/lock_writes.rake

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.8 KiB
Ruby
Raw Normal View History

2022-07-23 23:45:48 +05:30
# frozen_string_literal: true
namespace :gitlab do
namespace :db do
desc "GitLab | DB | Install prevent write triggers on all databases"
task lock_writes: [:environment, 'gitlab:db:validate_config'] do
2022-08-27 11:52:29 +05:30
Gitlab::Database::EachDatabase.each_database_connection(include_shared: false) do |connection, database_name|
2022-07-23 23:45:48 +05:30
schemas_for_connection = Gitlab::Database.gitlab_schemas_for_connection(connection)
Gitlab::Database::GitlabSchema.tables_to_schema.each do |table_name, schema_name|
2022-08-13 15:12:31 +05:30
# TODO: https://gitlab.com/gitlab-org/gitlab/-/issues/366834
next if schema_name == :gitlab_geo
2022-08-27 11:52:29 +05:30
lock_writes_manager = Gitlab::Database::LockWritesManager.new(
table_name: table_name,
connection: connection,
database_name: database_name,
logger: Logger.new($stdout)
)
2022-07-23 23:45:48 +05:30
if schemas_for_connection.include?(schema_name.to_sym)
2022-08-27 11:52:29 +05:30
lock_writes_manager.unlock_writes
2022-07-23 23:45:48 +05:30
else
2022-08-27 11:52:29 +05:30
lock_writes_manager.lock_writes
2022-07-23 23:45:48 +05:30
end
end
end
end
desc "GitLab | DB | Remove all triggers that prevents writes from all databases"
task unlock_writes: :environment do
Gitlab::Database::EachDatabase.each_database_connection do |connection, database_name|
Gitlab::Database::GitlabSchema.tables_to_schema.each do |table_name, schema_name|
2022-08-13 15:12:31 +05:30
# TODO: https://gitlab.com/gitlab-org/gitlab/-/issues/366834
next if schema_name == :gitlab_geo
2022-08-27 11:52:29 +05:30
lock_writes_manager = Gitlab::Database::LockWritesManager.new(
table_name: table_name,
connection: connection,
database_name: database_name,
logger: Logger.new($stdout)
)
2022-07-23 23:45:48 +05:30
2022-08-27 11:52:29 +05:30
lock_writes_manager.unlock_writes
2022-07-23 23:45:48 +05:30
end
end
end
end
end