debian-mirror-gitlab/lib/gitlab/database/reindexing/coordinator.rb

60 lines
1.4 KiB
Ruby
Raw Normal View History

2021-01-03 14:25:43 +05:30
# frozen_string_literal: true
module Gitlab
module Database
module Reindexing
class Coordinator
include ExclusiveLeaseGuard
# Maximum lease time for the global Redis lease
# This should be higher than the maximum time for any
# long running step in the reindexing process (compare with
# statement timeouts).
TIMEOUT_PER_ACTION = 1.day
2021-03-08 18:12:59 +05:30
attr_reader :index, :notifier
2021-01-03 14:25:43 +05:30
2021-03-08 18:12:59 +05:30
def initialize(index, notifier = GrafanaNotifier.new)
@index = index
@notifier = notifier
2021-01-03 14:25:43 +05:30
end
def perform
2021-03-08 18:12:59 +05:30
# This obtains a global lease such that there's
# only one live reindexing process at a time.
try_obtain_lease do
action = ReindexAction.create_for(index)
with_notifications(action) do
perform_for(index, action)
2021-01-03 14:25:43 +05:30
end
end
end
private
2021-03-08 18:12:59 +05:30
def with_notifications(action)
notifier.notify_start(action)
yield
ensure
notifier.notify_end(action)
end
def perform_for(index, action)
ConcurrentReindex.new(index).perform
rescue
action.state = :failed
raise
ensure
action.finish
end
2021-01-03 14:25:43 +05:30
def lease_timeout
TIMEOUT_PER_ACTION
end
end
end
end
end