debian-mirror-gitlab/app/workers/object_pool/create_worker.rb

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

49 lines
979 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
module ObjectPool
2020-04-08 14:13:33 +05:30
class CreateWorker # rubocop:disable Scalability/IdempotentWorker
2019-02-15 15:39:39 +05:30
include ApplicationWorker
2021-06-08 01:23:25 +05:30
2021-10-27 15:23:28 +05:30
data_consistency :always
2021-06-08 01:23:25 +05:30
sidekiq_options retry: 3
2019-02-15 15:39:39 +05:30
include ObjectPoolQueue
include ExclusiveLeaseGuard
attr_reader :pool
def perform(pool_id)
@pool = PoolRepository.find_by_id(pool_id)
return unless pool
try_obtain_lease do
perform_pool_creation
end
end
private
def perform_pool_creation
return unless pool.failed? || pool.scheduled?
# If this is a retry and the previous execution failed, deletion will
# bring the pool back to a pristine state
pool.delete_object_pool if pool.failed?
pool.create_object_pool
pool.mark_ready
2021-06-08 01:23:25 +05:30
rescue StandardError => e
2019-02-15 15:39:39 +05:30
pool.mark_failed
raise e
end
def lease_key
"object_pool:create:#{pool.id}"
end
def lease_timeout
1.hour
end
end
end