Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lock_tables_worker.rb « database « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12c8e508ad5fe3184b306ed14ff1cd1a29358abc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# frozen_string_literal: true

module Database
  class LockTablesWorker
    include ApplicationWorker

    TableShouldNotBeLocked = Class.new(StandardError)

    sidekiq_options retry: false
    feature_category :cell
    data_consistency :always # rubocop:disable SidekiqLoadBalancing/WorkerDataConsistency
    idempotent!

    version 1

    def perform(database_name, tables)
      check_if_should_lock_database(database_name)

      connection = ::Gitlab::Database.database_base_models_with_gitlab_shared[database_name].connection
      check_if_should_lock_tables(tables, database_name, connection)

      performed_actions = tables.map do |table_name|
        lock_writes_manager(table_name, connection, database_name).lock_writes
      end

      log_extra_metadata_on_done(:performed_actions, performed_actions)
    end

    private

    def check_if_should_lock_database(database_name)
      raise TableShouldNotBeLocked, 'GitLab is not running in multiple database mode' unless
        Gitlab::Database.database_mode == Gitlab::Database::MODE_MULTIPLE_DATABASES

      raise TableShouldNotBeLocked, "database '#{database_name}' does not support locking writes on tables" unless
      ::Gitlab::Database.database_base_models_with_gitlab_shared.include?(database_name)
    end

    def check_if_should_lock_tables(tables, database_name, connection)
      tables.each do |table_name|
        unless should_lock_writes_on_table?(connection, database_name, table_name)
          raise TableShouldNotBeLocked, "table '#{table_name}' should not be locked on the database '#{database_name}'"
        end
      end
    end

    def should_lock_writes_on_table?(connection, database_name, table_name)
      db_info = Gitlab::Database.all_database_connections.fetch(database_name)
      table_schema = Gitlab::Database::GitlabSchema.table_schema!(table_name.to_s)

      Gitlab::Database.gitlab_schemas_for_connection(connection).exclude?(table_schema) &&
        db_info.lock_gitlab_schemas.include?(table_schema)
    end

    def lock_writes_manager(table_name, connection, database_name)
      Gitlab::Database::LockWritesManager.new(
        table_name: table_name,
        connection: connection,
        database_name: database_name,
        with_retries: !connection.transaction_open?,
        logger: nil,
        dry_run: false
      )
    end
  end
end