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
b9865d7d
Commit
b9865d7d
authored
Nov 15, 2021
by
Pedro Pombeiro
Committed by
Thong Kuah
Nov 22, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stale scope to CI runner
parent
b580dde8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
94 additions
and
17 deletions
+94
-17
app/models/ci/runner.rb
app/models/ci/runner.rb
+13
-1
spec/models/ci/runner_spec.rb
spec/models/ci/runner_spec.rb
+81
-16
No files found.
app/models/ci/runner.rb
View file @
b9865d7d
...
@@ -40,6 +40,9 @@ module Ci
...
@@ -40,6 +40,9 @@ module Ci
# The `UPDATE_CONTACT_COLUMN_EVERY` defines how often the Runner DB entry can be updated
# The `UPDATE_CONTACT_COLUMN_EVERY` defines how often the Runner DB entry can be updated
UPDATE_CONTACT_COLUMN_EVERY
=
(
40
.
minutes
..
55
.
minutes
).
freeze
UPDATE_CONTACT_COLUMN_EVERY
=
(
40
.
minutes
..
55
.
minutes
).
freeze
# The `STALE_TIMEOUT` constant defines the how far past the last contact or creation date a runner will be considered stale
STALE_TIMEOUT
=
3
.
months
AVAILABLE_TYPES_LEGACY
=
%w[specific shared]
.
freeze
AVAILABLE_TYPES_LEGACY
=
%w[specific shared]
.
freeze
AVAILABLE_TYPES
=
runner_types
.
keys
.
freeze
AVAILABLE_TYPES
=
runner_types
.
keys
.
freeze
AVAILABLE_STATUSES
=
%w[active paused online offline not_connected]
.
freeze
AVAILABLE_STATUSES
=
%w[active paused online offline not_connected]
.
freeze
...
@@ -61,7 +64,8 @@ module Ci
...
@@ -61,7 +64,8 @@ module Ci
scope
:active
,
->
{
where
(
active:
true
)
}
scope
:active
,
->
{
where
(
active:
true
)
}
scope
:paused
,
->
{
where
(
active:
false
)
}
scope
:paused
,
->
{
where
(
active:
false
)
}
scope
:online
,
->
{
where
(
'contacted_at > ?'
,
online_contact_time_deadline
)
}
scope
:online
,
->
{
where
(
'contacted_at > ?'
,
online_contact_time_deadline
)
}
scope
:recent
,
->
{
where
(
'ci_runners.created_at > :date OR ci_runners.contacted_at > :date'
,
date:
3
.
months
.
ago
)
}
scope
:recent
,
->
{
where
(
'ci_runners.created_at >= :date OR ci_runners.contacted_at >= :date'
,
date:
stale_deadline
)
}
scope
:stale
,
->
{
where
(
'ci_runners.created_at < :date AND (ci_runners.contacted_at IS NULL OR ci_runners.contacted_at < :date)'
,
date:
stale_deadline
)
}
scope
:offline
,
->
{
where
(
arel_table
[
:contacted_at
].
lteq
(
online_contact_time_deadline
))
}
scope
:offline
,
->
{
where
(
arel_table
[
:contacted_at
].
lteq
(
online_contact_time_deadline
))
}
scope
:not_connected
,
->
{
where
(
contacted_at:
nil
)
}
scope
:not_connected
,
->
{
where
(
contacted_at:
nil
)
}
scope
:ordered
,
->
{
order
(
id: :desc
)
}
scope
:ordered
,
->
{
order
(
id: :desc
)
}
...
@@ -185,6 +189,10 @@ module Ci
...
@@ -185,6 +189,10 @@ module Ci
ONLINE_CONTACT_TIMEOUT
.
ago
ONLINE_CONTACT_TIMEOUT
.
ago
end
end
def
self
.
stale_deadline
STALE_TIMEOUT
.
ago
end
def
self
.
recent_queue_deadline
def
self
.
recent_queue_deadline
# we add queue expiry + online
# we add queue expiry + online
# - contacted_at can be updated at any time within this interval
# - contacted_at can be updated at any time within this interval
...
@@ -273,6 +281,10 @@ module Ci
...
@@ -273,6 +281,10 @@ module Ci
contacted_at
&&
contacted_at
>
self
.
class
.
online_contact_time_deadline
contacted_at
&&
contacted_at
>
self
.
class
.
online_contact_time_deadline
end
end
def
stale?
[
created_at
,
contacted_at
].
compact
.
max
<
self
.
class
.
stale_deadline
end
def
status
def
status
return
:not_connected
unless
contacted_at
return
:not_connected
unless
contacted_at
...
...
spec/models/ci/runner_spec.rb
View file @
b9865d7d
...
@@ -298,26 +298,93 @@ RSpec.describe Ci::Runner do
...
@@ -298,26 +298,93 @@ RSpec.describe Ci::Runner do
describe
'.recent'
do
describe
'.recent'
do
subject
{
described_class
.
recent
}
subject
{
described_class
.
recent
}
let!
(
:runner1
)
{
create
(
:ci_runner
,
:instance
,
contacted_at:
nil
,
created_at:
2
.
months
.
ago
)
}
let!
(
:runner2
)
{
create
(
:ci_runner
,
:instance
,
contacted_at:
nil
,
created_at:
3
.
months
.
ago
)
}
let!
(
:runner3
)
{
create
(
:ci_runner
,
:instance
,
contacted_at:
1
.
month
.
ago
,
created_at:
2
.
months
.
ago
)
}
let!
(
:runner4
)
{
create
(
:ci_runner
,
:instance
,
contacted_at:
1
.
month
.
ago
,
created_at:
3
.
months
.
ago
)
}
it
{
is_expected
.
to
eq
([
runner1
,
runner3
,
runner4
])}
end
describe
'.stale'
do
subject
{
described_class
.
stale
}
let!
(
:runner1
)
{
create
(
:ci_runner
,
:instance
,
created_at:
4
.
months
.
ago
,
contacted_at:
3
.
months
.
ago
+
10
.
seconds
)
}
let!
(
:runner2
)
{
create
(
:ci_runner
,
:instance
,
created_at:
4
.
months
.
ago
,
contacted_at:
3
.
months
.
ago
-
1
.
second
)
}
let!
(
:runner3
)
{
create
(
:ci_runner
,
:instance
,
created_at:
3
.
months
.
ago
-
1
.
second
,
contacted_at:
nil
)
}
let!
(
:runner4
)
{
create
(
:ci_runner
,
:instance
,
created_at:
2
.
months
.
ago
,
contacted_at:
nil
)
}
it
'returns stale runners'
do
is_expected
.
to
match_array
([
runner2
,
runner3
])
end
end
describe
'#stale?'
,
:clean_gitlab_redis_cache
do
let
(
:runner
)
{
create
(
:ci_runner
,
:instance
)
}
subject
{
runner
.
stale?
}
before
do
before
do
@runner1
=
create
(
:ci_runner
,
:instance
,
contacted_at:
nil
,
created_at:
2
.
months
.
ago
)
allow_any_instance_of
(
described_class
).
to
receive
(
:cached_attribute
).
and_call_original
@runner2
=
create
(
:ci_runner
,
:instance
,
contacted_at:
nil
,
created_at:
3
.
months
.
ago
)
allow_any_instance_of
(
described_class
).
to
receive
(
:cached_attribute
)
@runner3
=
create
(
:ci_runner
,
:instance
,
contacted_at:
1
.
month
.
ago
,
created_at:
2
.
months
.
ago
)
.
with
(
:platform
).
and_return
(
"darwin"
)
@runner4
=
create
(
:ci_runner
,
:instance
,
contacted_at:
1
.
month
.
ago
,
created_at:
3
.
months
.
ago
)
@runner5
=
create
(
:ci_runner
,
:instance
,
contacted_at:
3
.
months
.
ago
,
created_at:
5
.
months
.
ago
)
end
end
it
{
is_expected
.
to
eq
([
@runner1
,
@runner3
,
@runner4
])}
context
'table tests'
do
using
RSpec
::
Parameterized
::
TableSyntax
where
(
:created_at
,
:contacted_at
,
:expected_stale?
)
do
3
.
months
.
ago
-
1
.
second
|
3
.
months
.
ago
-
0.001
.
seconds
|
true
3
.
months
.
ago
-
1
.
second
|
3
.
months
.
ago
+
1
.
hour
|
false
3
.
months
.
ago
-
1
.
second
|
nil
|
true
3
.
months
.
ago
+
1
.
hour
|
nil
|
false
end
end
describe
'.online'
do
with_them
do
subject
{
described_class
.
online
}
before
do
runner
.
created_at
=
created_at
end
context
'no cache value'
do
before
do
stub_redis_runner_contacted_at
(
nil
)
runner
.
contacted_at
=
contacted_at
end
specify
do
is_expected
.
to
eq
(
expected_stale?
)
end
end
context
'with cache value'
do
before
do
before
do
@runner1
=
create
(
:ci_runner
,
:instance
,
contacted_at:
2
.
hours
.
ago
)
runner
.
contacted_at
=
contacted_at
?
contacted_at
+
1
.
week
:
nil
@runner2
=
create
(
:ci_runner
,
:instance
,
contacted_at:
1
.
second
.
ago
)
stub_redis_runner_contacted_at
(
contacted_at
.
to_s
)
end
end
it
{
is_expected
.
to
eq
([
@runner2
])}
specify
do
is_expected
.
to
eq
(
expected_stale?
)
end
end
def
stub_redis_runner_contacted_at
(
value
)
Gitlab
::
Redis
::
Cache
.
with
do
|
redis
|
cache_key
=
runner
.
send
(
:cache_attribute_key
)
expect
(
redis
).
to
receive
(
:get
).
with
(
cache_key
)
.
and_return
({
contacted_at:
value
}.
to_json
).
at_least
(
:once
)
end
end
end
end
end
describe
'.online'
do
subject
{
described_class
.
online
}
let!
(
:runner1
)
{
create
(
:ci_runner
,
:instance
,
contacted_at:
2
.
hours
.
ago
)
}
let!
(
:runner2
)
{
create
(
:ci_runner
,
:instance
,
contacted_at:
1
.
second
.
ago
)
}
it
{
is_expected
.
to
match_array
([
runner2
])
}
end
end
describe
'#online?'
,
:clean_gitlab_redis_cache
do
describe
'#online?'
,
:clean_gitlab_redis_cache
do
...
@@ -393,12 +460,10 @@ RSpec.describe Ci::Runner do
...
@@ -393,12 +460,10 @@ RSpec.describe Ci::Runner do
describe
'.offline'
do
describe
'.offline'
do
subject
{
described_class
.
offline
}
subject
{
described_class
.
offline
}
before
do
let!
(
:runner1
)
{
create
(
:ci_runner
,
:instance
,
contacted_at:
2
.
hours
.
ago
)
}
@runner1
=
create
(
:ci_runner
,
:instance
,
contacted_at:
2
.
hours
.
ago
)
let!
(
:runner2
)
{
create
(
:ci_runner
,
:instance
,
contacted_at:
1
.
second
.
ago
)
}
@runner2
=
create
(
:ci_runner
,
:instance
,
contacted_at:
1
.
second
.
ago
)
end
it
{
is_expected
.
to
eq
([
@runner1
])
}
it
{
is_expected
.
to
eq
([
runner1
])
}
end
end
describe
'#tick_runner_queue'
do
describe
'#tick_runner_queue'
do
...
...
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