summaryrefslogtreecommitdiff
path: root/app/workers/concerns/limited_capacity/job_tracker.rb
blob: 96b6e1a2024d4a955b66fce164578c57c483dd70 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# frozen_string_literal: true
module LimitedCapacity
  class JobTracker # rubocop:disable Scalability/IdempotentWorker
    include Gitlab::Utils::StrongMemoize

    def initialize(namespace)
      @namespace = namespace
    end

    def register(jid)
      _added, @count = with_redis_pipeline do |redis|
        register_job_keys(redis, jid)
        get_job_count(redis)
      end
    end

    def remove(jid)
      _removed, @count = with_redis_pipeline do |redis|
        remove_job_keys(redis, jid)
        get_job_count(redis)
      end
    end

    def clean_up
      completed_jids = Gitlab::SidekiqStatus.completed_jids(running_jids)
      return unless completed_jids.any?

      _removed, @count = with_redis_pipeline do |redis|
        remove_job_keys(redis, completed_jids)
        get_job_count(redis)
      end
    end

    def count
      @count ||= with_redis { |redis| get_job_count(redis) }
    end

    def running_jids
      with_redis do |redis|
        redis.smembers(counter_key)
      end
    end

    private

    attr_reader :namespace

    def counter_key
      "worker:#{namespace.to_s.underscore}:running"
    end

    def get_job_count(redis)
      redis.scard(counter_key)
    end

    def register_job_keys(redis, keys)
      redis.sadd(counter_key, keys)
    end

    def remove_job_keys(redis, keys)
      redis.srem(counter_key, keys)
    end

    def with_redis(&block)
      Gitlab::Redis::Queues.with(&block) # rubocop: disable CodeReuse/ActiveRecord
    end

    def with_redis_pipeline(&block)
      with_redis do |redis|
        redis.pipelined(&block)
      end
    end
  end
end