discourse/lib/distributed_mutex.rb
Sam 5302709343 FIX: in redis readonly raise an exception from DistributedMutex
If we detect redis is in readonly we can not correctly get a mutex
raise an exception to notify caller

When getting optimized images avoid the distributed mutex unless
for some reason it is the first call and we need to generate a thumb

In redis readonly no thumbnails will be generated
2018-09-19 15:50:58 +10:00

64 lines
1.2 KiB
Ruby

# Cross-process locking using Redis.
class DistributedMutex
def self.synchronize(key, redis = nil, &blk)
self.new(key, redis).synchronize(&blk)
end
def initialize(key, redis = nil)
@key = key
@using_global_redis = true if !redis
@redis = redis || $redis
@mutex = Mutex.new
end
CHECK_READONLY_ATTEMPT ||= 10
# NOTE wrapped in mutex to maintain its semantics
def synchronize
@mutex.lock
attempts = 0
while !try_to_get_lock
sleep 0.001
attempts += 1
# in readonly we will never be able to get a lock
if @using_global_redis && attempts > CHECK_READONLY_ATTEMPT
raise Discourse::ReadOnly
end
end
yield
ensure
@redis.del @key
@mutex.unlock
end
private
def try_to_get_lock
got_lock = false
if @redis.setnx @key, Time.now.to_i + 60
@redis.expire @key, 60
got_lock = true
else
begin
@redis.watch @key
time = @redis.get @key
if time && time.to_i < Time.now.to_i
got_lock = @redis.multi do
@redis.set @key, Time.now.to_i + 60
end
end
ensure
@redis.unwatch
end
end
got_lock
end
end