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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/database/batched_background_migration/execution_worker.rb')
-rw-r--r--app/workers/database/batched_background_migration/execution_worker.rb75
1 files changed, 75 insertions, 0 deletions
diff --git a/app/workers/database/batched_background_migration/execution_worker.rb b/app/workers/database/batched_background_migration/execution_worker.rb
new file mode 100644
index 00000000000..098153c742f
--- /dev/null
+++ b/app/workers/database/batched_background_migration/execution_worker.rb
@@ -0,0 +1,75 @@
+# frozen_string_literal: true
+
+module Database
+ module BatchedBackgroundMigration
+ class ExecutionWorker # rubocop:disable Scalability/IdempotentWorker
+ include ExclusiveLeaseGuard
+ include Gitlab::Utils::StrongMemoize
+
+ INTERVAL_VARIANCE = 5.seconds.freeze
+ LEASE_TIMEOUT_MULTIPLIER = 3
+
+ def perform(database_name, migration_id)
+ self.database_name = database_name
+
+ return unless enabled?
+ return if shares_db_config?
+
+ Gitlab::Database::SharedModel.using_connection(base_model.connection) do
+ self.migration = find_migration(migration_id)
+
+ break unless migration
+
+ try_obtain_lease do
+ run_migration_job if executable_migration?
+ end
+ end
+ end
+
+ private
+
+ attr_accessor :database_name, :migration
+
+ def enabled?
+ Feature.enabled?(:execute_batched_migrations_on_schedule, type: :ops)
+ end
+
+ def shares_db_config?
+ Gitlab::Database.db_config_share_with(base_model.connection_db_config).present?
+ end
+
+ def base_model
+ strong_memoize(:base_model) do
+ Gitlab::Database.database_base_models[database_name]
+ end
+ end
+
+ def find_migration(id)
+ Gitlab::Database::BackgroundMigration::BatchedMigration.find_executable(id, connection: base_model.connection)
+ end
+
+ def lease_key
+ @lease_key ||= [
+ self.class.name.underscore,
+ 'database_name',
+ database_name,
+ 'table_name',
+ migration.table_name
+ ].join(':')
+ end
+
+ def lease_timeout
+ migration.interval * LEASE_TIMEOUT_MULTIPLIER
+ end
+
+ def executable_migration?
+ migration.active? && migration.interval_elapsed?(variance: INTERVAL_VARIANCE)
+ end
+
+ def run_migration_job
+ Gitlab::Database::BackgroundMigration::BatchedMigrationRunner.new(connection: base_model.connection)
+ .run_migration_job(migration)
+ end
+ end
+ end
+end