BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
2a0ead2c
Commit
2a0ead2c
authored
Jul 13, 2017
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement draining scheduled sets of background migrations
parent
388abbd1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
7 deletions
+30
-7
background_migration.rb
lib/gitlab/background_migration.rb
+12
-7
background_migration_spec.rb
spec/lib/gitlab/background_migration_spec.rb
+14
-0
sidekiq.rb
spec/support/sidekiq.rb
+4
-0
No files found.
lib/gitlab/background_migration.rb
View file @
2a0ead2c
module
Gitlab
module
BackgroundMigration
def
self
.
queue
BackgroundMigrationWorker
.
sidekiq_options
[
'queue'
]
@queue
||=
BackgroundMigrationWorker
.
sidekiq_options
[
'queue'
]
end
# Begins stealing jobs from the background migrations queue, blocking the
...
...
@@ -9,16 +9,20 @@ module Gitlab
#
# steal_class - The name of the class for which to steal jobs.
def
self
.
steal
(
steal_class
)
queue
=
Sidekiq
::
Queue
.
new
(
self
.
queue
)
enqueued
=
Sidekiq
::
Queue
.
new
(
self
.
queue
)
scheduled
=
Sidekiq
::
ScheduledSet
.
new
queue
.
each
do
|
job
|
migration_class
,
migration_args
=
job
.
args
[
scheduled
,
enqueued
].
each
do
|
queue
|
queue
.
each
do
|
job
|
migration_class
,
migration_args
=
job
.
args
next
unless
migration_class
==
steal_class
next
unless
job
.
queue
==
self
.
queue
next
unless
migration_class
==
steal_class
perform
(
migration_class
,
migration_args
)
perform
(
migration_class
,
migration_args
)
job
.
delete
job
.
delete
end
end
end
...
...
@@ -28,6 +32,7 @@ module Gitlab
# arguments - The arguments to pass to the background migration's "perform"
# method.
def
self
.
perform
(
class_name
,
arguments
)
puts
class_name
const_get
(
class_name
).
new
.
perform
(
*
arguments
)
end
end
...
...
spec/lib/gitlab/background_migration_spec.rb
View file @
2a0ead2c
...
...
@@ -34,6 +34,20 @@ describe Gitlab::BackgroundMigration do
described_class
.
steal
(
'Bar'
)
end
end
context
'when there are scheduled jobs present'
,
:sidekiq
,
:redis
do
it
'steals all jobs from the schedule sets'
do
Sidekiq
::
Testing
.
disable!
do
BackgroundMigrationWorker
.
perform_in
(
10
.
minutes
,
'Object'
)
expect
(
Sidekiq
::
ScheduledSet
.
new
).
to
be_one
expect
(
described_class
).
to
receive
(
:perform
).
with
(
'Object'
,
any_args
)
described_class
.
steal
(
'Object'
)
expect
(
Sidekiq
::
ScheduledSet
.
new
).
to
be_none
end
end
end
end
describe
'.perform'
do
...
...
spec/support/sidekiq.rb
View file @
2a0ead2c
...
...
@@ -8,4 +8,8 @@ RSpec.configure do |config|
config
.
after
(
:each
,
:sidekiq
)
do
Sidekiq
::
Worker
.
clear_all
end
config
.
after
(
:each
,
:sidekiq
,
:redis
)
do
Sidekiq
.
redis
{
|
redis
|
redis
.
flushdb
}
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