2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-02 11:12:36 -04:00
|
|
|
class BackgroundMigrationWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2017-06-02 11:12:36 -04:00
|
|
|
|
2019-10-18 07:11:44 -04:00
|
|
|
feature_category_not_owned!
|
|
|
|
|
2018-01-04 10:49:15 -05:00
|
|
|
# The minimum amount of time between processing two jobs of the same migration
|
|
|
|
# class.
|
|
|
|
#
|
2018-07-19 11:16:47 -04:00
|
|
|
# This interval is set to 2 or 5 minutes so autovacuuming and other
|
|
|
|
# maintenance related tasks have plenty of time to clean up after a migration
|
|
|
|
# has been performed.
|
|
|
|
def self.minimum_interval
|
2018-08-28 07:49:16 -04:00
|
|
|
2.minutes.to_i
|
2018-07-19 11:16:47 -04:00
|
|
|
end
|
2018-01-04 10:49:15 -05:00
|
|
|
|
2017-06-02 11:12:36 -04:00
|
|
|
# Performs the background migration.
|
|
|
|
#
|
|
|
|
# See Gitlab::BackgroundMigration.perform for more information.
|
2018-01-04 10:49:15 -05:00
|
|
|
#
|
|
|
|
# class_name - The class name of the background migration to run.
|
|
|
|
# arguments - The arguments to pass to the migration class.
|
2017-06-02 11:12:36 -04:00
|
|
|
def perform(class_name, arguments = [])
|
2018-01-04 10:49:15 -05:00
|
|
|
should_perform, ttl = perform_and_ttl(class_name)
|
|
|
|
|
|
|
|
if should_perform
|
|
|
|
Gitlab::BackgroundMigration.perform(class_name, arguments)
|
|
|
|
else
|
|
|
|
# If the lease could not be obtained this means either another process is
|
|
|
|
# running a migration of this class or we ran one recently. In this case
|
|
|
|
# we'll reschedule the job in such a way that it is picked up again around
|
|
|
|
# the time the lease expires.
|
2018-07-19 11:16:47 -04:00
|
|
|
self.class
|
|
|
|
.perform_in(ttl || self.class.minimum_interval, class_name, arguments)
|
2018-01-04 10:49:15 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def perform_and_ttl(class_name)
|
|
|
|
if always_perform?
|
|
|
|
# In test environments `perform_in` will run right away. This can then
|
|
|
|
# lead to stack level errors in the above `#perform`. To work around this
|
|
|
|
# we'll just perform the migration right away in the test environment.
|
|
|
|
[true, nil]
|
|
|
|
else
|
|
|
|
lease = lease_for(class_name)
|
2018-07-19 11:16:47 -04:00
|
|
|
perform = !!lease.try_obtain
|
|
|
|
|
|
|
|
# If we managed to acquire the lease but the DB is not healthy, then we
|
|
|
|
# want to simply reschedule our job and try again _after_ the lease
|
|
|
|
# expires.
|
|
|
|
if perform && !healthy_database?
|
|
|
|
database_unhealthy_counter.increment
|
2018-01-04 10:49:15 -05:00
|
|
|
|
2018-07-19 11:16:47 -04:00
|
|
|
perform = false
|
|
|
|
end
|
|
|
|
|
|
|
|
[perform, lease.ttl]
|
2018-01-04 10:49:15 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def lease_for(class_name)
|
|
|
|
Gitlab::ExclusiveLease
|
2018-07-19 11:16:47 -04:00
|
|
|
.new(lease_key_for(class_name), timeout: self.class.minimum_interval)
|
|
|
|
end
|
|
|
|
|
|
|
|
def lease_key_for(class_name)
|
|
|
|
"#{self.class.name}:#{class_name}"
|
2018-01-04 10:49:15 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def always_perform?
|
|
|
|
Rails.env.test?
|
2017-06-02 11:12:36 -04:00
|
|
|
end
|
2018-07-19 11:16:47 -04:00
|
|
|
|
|
|
|
# Returns true if the database is healthy enough to allow the migration to be
|
|
|
|
# performed.
|
|
|
|
#
|
|
|
|
# class_name - The name of the background migration that we might want to
|
|
|
|
# run.
|
|
|
|
def healthy_database?
|
|
|
|
!Postgresql::ReplicationSlot.lag_too_great?
|
|
|
|
end
|
|
|
|
|
|
|
|
def database_unhealthy_counter
|
|
|
|
Gitlab::Metrics.counter(
|
|
|
|
:background_migration_database_health_reschedules,
|
|
|
|
'The number of times a background migration is rescheduled because the database is unhealthy.'
|
|
|
|
)
|
|
|
|
end
|
2017-06-02 11:12:36 -04:00
|
|
|
end
|