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
69736f39
Commit
69736f39
authored
Jun 29, 2017
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use ActiveRecord 5 batching to schedule bg migration
parent
af2f2dc5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
36 deletions
+32
-36
app/workers/background_migration_worker.rb
app/workers/background_migration_worker.rb
+1
-1
config/initializers/ar5_batching.rb
config/initializers/ar5_batching.rb
+2
-2
db/post_migrate/20170628080858_migrate_stage_id_reference_in_background.rb
...0170628080858_migrate_stage_id_reference_in_background.rb
+3
-4
spec/migrations/migrate_stage_id_reference_in_background_spec.rb
...grations/migrate_stage_id_reference_in_background_spec.rb
+26
-29
No files found.
app/workers/background_migration_worker.rb
View file @
69736f39
...
...
@@ -14,7 +14,7 @@ class BackgroundMigrationWorker
'args'
=>
jobs
)
end
# Schedules
a number of
jobs in bulk, with a delay.
# Schedules
multiple
jobs in bulk, with a delay.
#
def
self
.
perform_bulk_in
(
delay
,
jobs
)
now
=
Time
.
now
.
to_f
...
...
config/initializers/ar5_batching.rb
View file @
69736f39
...
...
@@ -15,7 +15,7 @@ module ActiveRecord
relation
=
relation
.
where
(
arel_table
[
primary_key
].
lteq
(
finish
))
if
finish
batch_relation
=
relation
loop
do
1
.
step
do
|
index
|
if
load
records
=
batch_relation
.
records
ids
=
records
.
map
(
&
:id
)
...
...
@@ -31,7 +31,7 @@ module ActiveRecord
primary_key_offset
=
ids
.
last
raise
ArgumentError
.
new
(
"Primary key not included in the custom select clause"
)
unless
primary_key_offset
yield
yielded_relation
yield
yielded_relation
,
index
break
if
ids
.
length
<
of
batch_relation
=
relation
.
where
(
arel_table
[
primary_key
].
gt
(
primary_key_offset
))
...
...
db/post_migrate/20170628080858_migrate_stage_id_reference_in_background.rb
View file @
69736f39
...
...
@@ -13,10 +13,9 @@ class MigrateStageIdReferenceInBackground < ActiveRecord::Migration
def
up
Build
.
where
(
stage_id:
nil
)
.
find_in_batches
(
batch_size:
BATCH_SIZE
)
.
with_index
do
|
builds
,
batch
|
builds
.
each
do
|
build
|
schedule
=
(
batch
-
1
)
*
5
.
minutes
.
in_batches
(
of:
BATCH_SIZE
)
do
|
relation
,
index
|
schedule
=
index
*
5
.
minutes
relation
.
each
do
|
build
|
BackgroundMigrationWorker
.
perform_at
(
schedule
,
MIGRATION
,
[
build
.
id
])
end
end
...
...
spec/migrations/migrate_stage_id_reference_in_background_spec.rb
View file @
69736f39
require
'spec_helper'
require
Rails
.
root
.
join
(
'db'
,
'post_migrate'
,
'20170628080858_migrate_stage_id_reference_in_background'
)
RSpec
::
Matchers
.
define
:have_migrated
do
|*
expected
|
match
do
|
migration
|
BackgroundMigrationWorker
.
jobs
.
any?
do
|
job
|
job
[
'enqueued_at'
].
present?
&&
job
[
'args'
]
==
[
migration
,
expected
]
describe
MigrateStageIdReferenceInBackground
,
:migration
,
:sidekiq
do
matcher
:have_migrated
do
|*
expected
|
match
do
|
migration
|
BackgroundMigrationWorker
.
jobs
.
any?
do
|
job
|
job
[
'enqueued_at'
].
present?
&&
job
[
'args'
]
==
[
migration
,
expected
]
end
end
end
failure_message
do
|
migration
|
<<-
EOS
Background migration `
#{
migration
}
` with args `
#{
expected
.
inspect
}
`
not migrated!
EOS
failure_message
do
|
migration
|
"Migration `
#{
migration
}
` with args `
#{
expected
.
inspect
}
` not executed!"
end
end
end
RSpec
::
Matchers
.
define
:have_scheduled_migration
do
|
time
,
*
expected
|
match
do
|
migration
|
BackgroundMigrationWorker
.
jobs
.
any?
do
|
job
|
job
[
'args'
]
==
[
migration
,
expected
]
&&
job
[
'at'
]
>=
time
matcher
:have_scheduled_migration
do
|
delay
,
*
expected
|
match
do
|
migration
|
BackgroundMigrationWorker
.
jobs
.
any?
do
|
job
|
job
[
'args'
]
==
[
migration
,
expected
]
&&
job
[
'at'
].
to_f
==
(
delay
.
to_f
+
Time
.
now
.
to_f
)
end
end
end
failure_message
do
|
migration
|
<<-
EOS
Background migration `
#{
migration
}
` with args `
#{
expected
.
inspect
}
`
not scheduled!
EOS
failure_message
do
|
migration
|
"Migration `
#{
migration
}
` with args `
#{
expected
.
inspect
}
` not scheduled!"
end
end
end
describe
MigrateStageIdReferenceInBackground
,
:migration
do
let
(
:jobs
)
{
table
(
:ci_builds
)
}
let
(
:stages
)
{
table
(
:ci_stages
)
}
let
(
:pipelines
)
{
table
(
:ci_pipelines
)
}
let
(
:projects
)
{
table
(
:projects
)
}
before
do
stub_const
(
'MigrateStageIdReferenceInBackground::BATCH_SIZE'
,
1
)
stub_const
(
'MigrateStageIdReferenceInBackground::BATCH_SIZE'
,
2
)
projects
.
create!
(
id:
123
,
name:
'gitlab1'
,
path:
'gitlab1'
)
pipelines
.
create!
(
id:
1
,
project_id:
123
,
ref:
'master'
,
sha:
'adf43c3a'
)
...
...
@@ -55,12 +50,14 @@ describe MigrateStageIdReferenceInBackground, :migration do
it
'correctly schedules background migrations'
do
Sidekiq
::
Testing
.
fake!
do
migrate!
Timecop
.
freeze
do
migrate!
expect
(
described_class
::
MIGRATION
).
to
have_migrated
(
1
)
expect
(
described_class
::
MIGRATION
).
to
have_migrated
(
2
)
expect
(
described_class
::
MIGRATION
).
to
have_scheduled_migration
(
5
.
minutes
,
3
)
expect
(
described_class
::
MIGRATION
).
to
have_scheduled_migration
(
5
.
minutes
,
4
)
expect
(
described_class
::
MIGRATION
).
to
have_scheduled_migration
(
5
.
minutes
,
1
)
expect
(
described_class
::
MIGRATION
).
to
have_scheduled_migration
(
5
.
minutes
,
2
)
expect
(
described_class
::
MIGRATION
).
to
have_scheduled_migration
(
10
.
minutes
,
3
)
expect
(
described_class
::
MIGRATION
).
to
have_scheduled_migration
(
10
.
minutes
,
4
)
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