Merge branch 'set-higher-ttl-for-trace-write' into 'master'

Set higher TTL to write lock for traces

See merge request gitlab-org/gitlab-ce!30064
This commit is contained in:
Kamil Trzciński 2019-06-28 10:39:08 +00:00
commit 5ee5b280b0
3 changed files with 7 additions and 2 deletions

View File

@ -0,0 +1,5 @@
---
title: Set higher TTL for write lock of trace to prevent concurrent archiving
merge_request: 30064
author:
type: fixed

View File

@ -5,7 +5,7 @@ module Gitlab
class Trace
include ::Gitlab::ExclusiveLeaseHelpers
LOCK_TTL = 1.minute
LOCK_TTL = 10.minutes
LOCK_RETRIES = 2
LOCK_SLEEP = 0.001.seconds

View File

@ -270,7 +270,7 @@ shared_examples_for 'common trace features' do
include ExclusiveLeaseHelpers
before do
stub_exclusive_lease_taken("trace:write:lock:#{trace.job.id}", timeout: 1.minute)
stub_exclusive_lease_taken("trace:write:lock:#{trace.job.id}", timeout: 10.minutes)
end
it 'blocks concurrent archiving' do