summaryrefslogtreecommitdiff
path: root/app/workers/metrics/dashboard/schedule_annotations_prune_worker.rb
blob: 62cf35a669f6b3f9b272247bc9b77085117269aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

module Metrics
  module Dashboard
    class ScheduleAnnotationsPruneWorker
      include ApplicationWorker

      data_consistency :always

      # rubocop:disable Scalability/CronWorkerContext
      # This worker does not perform work scoped to a context
      include CronjobQueue
      # rubocop:enable Scalability/CronWorkerContext

      feature_category :metrics

      idempotent! # PruneOldAnnotationsWorker worker is idempotent in the scope of 24 hours

      def perform
        # Process is split into two jobs to avoid long running jobs, which are more prone to be disrupted
        # mid work, which may cause some data not be delete, especially because cronjobs has retry option disabled
        PruneOldAnnotationsWorker.perform_async
      end
    end
  end
end