summaryrefslogtreecommitdiff
path: root/lib/gitlab/shard_health_cache.rb
blob: 6612347438e7490d40808b45e4d68ba8cc748333 (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
# frozen_string_literal: true

module Gitlab
  class ShardHealthCache
    HEALTHY_SHARDS_KEY = 'gitlab-healthy-shards'.freeze
    HEALTHY_SHARDS_TIMEOUT = 300

    # Clears the Redis set storing the list of healthy shards
    def self.clear
      Gitlab::Redis::Cache.with { |redis| redis.del(HEALTHY_SHARDS_KEY) }
    end

    # Updates the list of healthy shards using a Redis set
    #
    # shards - An array of shard names to store
    def self.update(shards)
      Gitlab::Redis::Cache.with do |redis|
        redis.multi do |m|
          m.del(HEALTHY_SHARDS_KEY)
          shards.each { |shard_name| m.sadd(HEALTHY_SHARDS_KEY, shard_name) }
          m.expire(HEALTHY_SHARDS_KEY, HEALTHY_SHARDS_TIMEOUT)
        end
      end
    end

    # Returns an array of strings of healthy shards
    def self.cached_healthy_shards
      Gitlab::Redis::Cache.with { |redis| redis.smembers(HEALTHY_SHARDS_KEY) }
    end

    # Checks whether the given shard name is in the list of healthy shards.
    #
    # shard_name - The string to check
    def self.healthy_shard?(shard_name)
      Gitlab::Redis::Cache.with { |redis| redis.sismember(HEALTHY_SHARDS_KEY, shard_name) }
    end

    # Returns the number of healthy shards in the Redis set
    def self.healthy_shard_count
      Gitlab::Redis::Cache.with { |redis| redis.scard(HEALTHY_SHARDS_KEY) }
    end
  end
end