debian-mirror-gitlab/app/models/namespace/aggregation_schedule.rb

48 lines
1.1 KiB
Ruby
Raw Normal View History

2019-09-30 21:07:59 +05:30
# frozen_string_literal: true
class Namespace::AggregationSchedule < ApplicationRecord
include AfterCommitQueue
include ExclusiveLeaseGuard
self.primary_key = :namespace_id
2019-10-12 21:52:04 +05:30
DEFAULT_LEASE_TIMEOUT = 1.5.hours.to_i
2019-12-04 20:38:33 +05:30
REDIS_SHARED_KEY = 'gitlab:update_namespace_statistics_delay'
2019-09-30 21:07:59 +05:30
belongs_to :namespace
after_create :schedule_root_storage_statistics
def schedule_root_storage_statistics
run_after_commit_or_now do
try_obtain_lease do
Namespaces::RootStatisticsWorker
.perform_async(namespace_id)
Namespaces::RootStatisticsWorker
2019-10-12 21:52:04 +05:30
.perform_in(DEFAULT_LEASE_TIMEOUT, namespace_id)
2019-09-30 21:07:59 +05:30
end
end
end
private
# Used by ExclusiveLeaseGuard
def lease_timeout
2019-10-12 21:52:04 +05:30
DEFAULT_LEASE_TIMEOUT
2019-09-30 21:07:59 +05:30
end
# Used by ExclusiveLeaseGuard
def lease_key
"namespace:namespaces_root_statistics:#{namespace_id}"
end
# Used by ExclusiveLeaseGuard
# Overriding value as we never release the lease
# before the timeout in order to prevent multiple
# RootStatisticsWorker to start in a short span of time
def lease_release?
false
end
end