Welcome to mirror list, hosted at ThFree Co, Russian Federation.

prune_old_annotations_worker.rb « dashboard « metrics « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b34f85606dcbc67bddc97c1b31956efa0f4bec1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module Metrics
  module Dashboard
    class PruneOldAnnotationsWorker
      include ApplicationWorker

      data_consistency :always

      sidekiq_options retry: 3

      DELETE_LIMIT = 10_000
      DEFAULT_CUT_OFF_PERIOD = 2.weeks

      feature_category :metrics

      idempotent! # in the scope of 24 hours

      def perform; end
    end
  end
end