2016-01-14 18:37:52 +05:30
|
|
|
# Projects::HousekeepingService class
|
|
|
|
#
|
|
|
|
# Used for git housekeeping
|
|
|
|
#
|
|
|
|
# Ex.
|
|
|
|
# Projects::HousekeepingService.new(project).execute
|
|
|
|
#
|
|
|
|
module Projects
|
|
|
|
class HousekeepingService < BaseService
|
2016-06-02 11:05:42 +05:30
|
|
|
LEASE_TIMEOUT = 3600
|
|
|
|
|
|
|
|
class LeaseTaken < StandardError
|
|
|
|
def to_s
|
|
|
|
"Somebody already triggered housekeeping for this project in the past #{LEASE_TIMEOUT / 60} minutes"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
def initialize(project)
|
|
|
|
@project = project
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
2016-06-16 23:09:34 +05:30
|
|
|
raise LeaseTaken unless try_obtain_lease
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
execute_gitlab_shell_gc
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def needed?
|
|
|
|
@project.pushes_since_gc >= 10
|
|
|
|
end
|
|
|
|
|
|
|
|
def increment!
|
2016-09-29 09:46:39 +05:30
|
|
|
Gitlab::Metrics.measure(:increment_pushes_since_gc) do
|
|
|
|
@project.increment_pushes_since_gc
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
def execute_gitlab_shell_gc
|
|
|
|
GitGarbageCollectWorker.perform_async(@project.id)
|
|
|
|
ensure
|
|
|
|
Gitlab::Metrics.measure(:reset_pushes_since_gc) do
|
2016-09-29 09:46:39 +05:30
|
|
|
@project.reset_pushes_since_gc
|
2016-08-24 12:49:21 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
def try_obtain_lease
|
|
|
|
Gitlab::Metrics.measure(:obtain_housekeeping_lease) do
|
|
|
|
lease = ::Gitlab::ExclusiveLease.new("project_housekeeping:#{@project.id}", timeout: LEASE_TIMEOUT)
|
|
|
|
lease.try_obtain
|
|
|
|
end
|
2016-01-14 18:37:52 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|