Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
16687ae7
Commit
16687ae7
authored
Sep 29, 2020
by
Jacob Vosmaer
Committed by
Nick Thomas
Sep 29, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ensure JobWaiter keys always expire
parent
3df1baec
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
15 deletions
+20
-15
changelogs/unreleased/jv-job-waiter-key-leak.yml
changelogs/unreleased/jv-job-waiter-key-leak.yml
+5
-0
lib/gitlab/job_waiter.rb
lib/gitlab/job_waiter.rb
+9
-8
spec/lib/gitlab/job_waiter_spec.rb
spec/lib/gitlab/job_waiter_spec.rb
+6
-7
No files found.
changelogs/unreleased/jv-job-waiter-key-leak.yml
0 → 100644
View file @
16687ae7
---
title
:
Ensure JobWaiter keys always expire
merge_request
:
43320
author
:
type
:
fixed
lib/gitlab/job_waiter.rb
View file @
16687ae7
...
...
@@ -23,7 +23,15 @@ module Gitlab
TIMEOUTS_METRIC
=
:gitlab_job_waiter_timeouts_total
def
self
.
notify
(
key
,
jid
)
Gitlab
::
Redis
::
SharedState
.
with
{
|
redis
|
redis
.
lpush
(
key
,
jid
)
}
Gitlab
::
Redis
::
SharedState
.
with
do
|
redis
|
# Use a Redis MULTI transaction to ensure we always set an expiry
redis
.
multi
do
|
multi
|
multi
.
lpush
(
key
,
jid
)
# This TTL needs to be long enough to allow whichever Sidekiq job calls
# JobWaiter#wait to reach BLPOP.
multi
.
expire
(
key
,
6
.
hours
.
to_i
)
end
end
end
def
self
.
key?
(
key
)
...
...
@@ -52,10 +60,6 @@ module Gitlab
increment_counter
(
STARTED_METRIC
)
Gitlab
::
Redis
::
SharedState
.
with
do
|
redis
|
# Fallback key expiry: allow a long grace period to reduce the chance of
# a job pushing to an expired key and recreating it
redis
.
expire
(
key
,
[
timeout
*
2
,
10
.
minutes
.
to_i
].
max
)
while
jobs_remaining
>
0
# Redis will not take fractional seconds. Prefer waiting too long over
# not waiting long enough
...
...
@@ -75,9 +79,6 @@ module Gitlab
@finished
<<
jid
@jobs_remaining
-=
1
end
# All jobs have finished, so expire the key immediately
redis
.
expire
(
key
,
0
)
if
jobs_remaining
==
0
end
finished
...
...
spec/lib/gitlab/job_waiter_spec.rb
View file @
16687ae7
...
...
@@ -2,17 +2,16 @@
require
'spec_helper'
RSpec
.
describe
Gitlab
::
JobWaiter
do
RSpec
.
describe
Gitlab
::
JobWaiter
,
:redis
do
describe
'.notify'
do
it
'pushes the jid to the named queue'
do
key
=
'gitlab:job_waiter:foo'
jid
=
1
key
=
described_class
.
new
.
key
redis
=
double
(
'redis'
)
expect
(
Gitlab
::
Redis
::
SharedState
).
to
receive
(
:with
).
and_yield
(
redis
)
expect
(
redis
).
to
receive
(
:lpush
).
with
(
key
,
jid
)
described_class
.
notify
(
key
,
123
)
described_class
.
notify
(
key
,
jid
)
Gitlab
::
Redis
::
SharedState
.
with
do
|
redis
|
expect
(
redis
.
ttl
(
key
)).
to
be
>
0
end
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment