debian-mirror-gitlab/app/services/ci/job_artifacts/destroy_batch_service.rb

97 lines
3.3 KiB
Ruby
Raw Normal View History

2021-04-29 21:17:54 +05:30
# frozen_string_literal: true
module Ci
module JobArtifacts
class DestroyBatchService
include BaseServiceUtility
include ::Gitlab::Utils::StrongMemoize
# Danger: Private - Should only be called in Ci Services that pass a batch of job artifacts
# Not for use outside of the Ci:: namespace
# Adds the passed batch of job artifacts to the `ci_deleted_objects` table
# for asyncronous destruction of the objects in Object Storage via the `Ci::DeleteObjectsService`
# and then deletes the batch of related `ci_job_artifacts` records.
# Params:
# +job_artifacts+:: A relation of job artifacts to destroy (fewer than MAX_JOB_ARTIFACT_BATCH_SIZE)
# +pick_up_at+:: When to pick up for deletion of files
# Returns:
# +Hash+:: A hash with status and destroyed_artifacts_count keys
def initialize(job_artifacts, pick_up_at: nil)
@job_artifacts = job_artifacts.with_destroy_preloads.to_a
@pick_up_at = pick_up_at
end
# rubocop: disable CodeReuse/ActiveRecord
2021-06-08 01:23:25 +05:30
def execute(update_stats: true)
return success(destroyed_artifacts_count: 0, statistics_updates: {}) if @job_artifacts.empty?
2021-04-29 21:17:54 +05:30
2021-12-11 22:18:48 +05:30
destroy_related_records(@job_artifacts)
2021-04-29 21:17:54 +05:30
Ci::DeletedObject.transaction do
Ci::DeletedObject.bulk_import(@job_artifacts, @pick_up_at)
Ci::JobArtifact.id_in(@job_artifacts.map(&:id)).delete_all
end
2021-12-11 22:18:48 +05:30
after_batch_destroy_hook(@job_artifacts)
2021-04-29 21:17:54 +05:30
# This is executed outside of the transaction because it depends on Redis
2021-06-08 01:23:25 +05:30
update_project_statistics! if update_stats
2021-12-11 22:18:48 +05:30
increment_monitoring_statistics(artifacts_count, artifacts_bytes)
2021-04-29 21:17:54 +05:30
2021-06-08 01:23:25 +05:30
success(destroyed_artifacts_count: artifacts_count,
statistics_updates: affected_project_statistics)
2021-04-29 21:17:54 +05:30
end
# rubocop: enable CodeReuse/ActiveRecord
private
2021-12-11 22:18:48 +05:30
# Overriden in EE
2021-04-29 21:17:54 +05:30
def destroy_related_records(artifacts); end
2021-12-11 22:18:48 +05:30
# Overriden in EE
def after_batch_destroy_hook(artifacts); end
2021-06-08 01:23:25 +05:30
# using ! here since this can't be called inside a transaction
def update_project_statistics!
affected_project_statistics.each do |project, delta|
project.increment_statistic_value(Ci::JobArtifact.project_statistics_name, delta)
end
end
def affected_project_statistics
strong_memoize(:affected_project_statistics) do
artifacts_by_project = @job_artifacts.group_by(&:project)
artifacts_by_project.each.with_object({}) do |(project, artifacts), accumulator|
delta = -artifacts.sum { |artifact| artifact.size.to_i }
accumulator[project] = delta
end
2021-04-29 21:17:54 +05:30
end
end
2021-12-11 22:18:48 +05:30
def increment_monitoring_statistics(size, bytes)
metrics.increment_destroyed_artifacts_count(size)
metrics.increment_destroyed_artifacts_bytes(bytes)
2021-04-29 21:17:54 +05:30
end
def metrics
@metrics ||= ::Gitlab::Ci::Artifacts::Metrics.new
end
def artifacts_count
strong_memoize(:artifacts_count) do
@job_artifacts.count
end
end
2021-12-11 22:18:48 +05:30
def artifacts_bytes
strong_memoize(:artifacts_bytes) do
@job_artifacts.sum { |artifact| artifact.try(:size) || 0 }
end
end
2021-04-29 21:17:54 +05:30
end
end
end
2021-06-08 01:23:25 +05:30
Ci::JobArtifacts::DestroyBatchService.prepend_mod_with('Ci::JobArtifacts::DestroyBatchService')