debian-mirror-gitlab/app/services/ci/archive_trace_service.rb

56 lines
2.1 KiB
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
module Ci
class ArchiveTraceService
2019-10-12 21:52:04 +05:30
def execute(job, worker_name:)
# TODO: Remove this logging once we confirmed new live trace architecture is functional.
# See https://gitlab.com/gitlab-com/gl-infra/infrastructure/issues/4667.
unless job.has_live_trace?
Sidekiq.logger.warn(class: worker_name,
message: 'The job does not have live trace but going to be archived.',
job_id: job.id)
return
end
2019-02-15 15:39:39 +05:30
job.trace.archive!
2019-10-12 21:52:04 +05:30
# TODO: Remove this logging once we confirmed new live trace architecture is functional.
# See https://gitlab.com/gitlab-com/gl-infra/infrastructure/issues/4667.
unless job.has_archived_trace?
Sidekiq.logger.warn(class: worker_name,
message: 'The job does not have archived trace after archiving.',
job_id: job.id)
end
2019-02-15 15:39:39 +05:30
rescue ::Gitlab::Ci::Trace::AlreadyArchivedError
# It's already archived, thus we can safely ignore this exception.
rescue => e
# Tracks this error with application logs, Sentry, and Prometheus.
# If `archive!` keeps failing for over a week, that could incur data loss.
# (See more https://docs.gitlab.com/ee/administration/job_traces.html#new-live-trace-architecture)
# In order to avoid interrupting the system, we do not raise an exception here.
2019-10-12 21:52:04 +05:30
archive_error(e, job, worker_name)
2019-02-15 15:39:39 +05:30
end
private
def failed_archive_counter
@failed_archive_counter ||=
Gitlab::Metrics.counter(:job_trace_archive_failed_total,
"Counter of failed attempts of trace archiving")
end
2019-10-12 21:52:04 +05:30
def archive_error(error, job, worker_name)
2019-02-15 15:39:39 +05:30
failed_archive_counter.increment
2019-10-12 21:52:04 +05:30
Sidekiq.logger.warn(class: worker_name,
message: "Failed to archive trace. message: #{error.message}.",
job_id: job.id)
2019-02-15 15:39:39 +05:30
Gitlab::Sentry
.track_exception(error,
2019-12-04 20:38:33 +05:30
issue_url: 'https://gitlab.com/gitlab-org/gitlab-foss/issues/51502',
2019-02-15 15:39:39 +05:30
extra: { job_id: job.id })
end
end
end