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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
fb89ba24
Commit
fb89ba24
authored
Jul 07, 2017
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Schedule stage_id background migration in ranges
parent
2917f486
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
19 deletions
+22
-19
db/post_migrate/20170628080858_migrate_stage_id_reference_in_background.rb
...0170628080858_migrate_stage_id_reference_in_background.rb
+8
-9
lib/gitlab/background_migration/migrate_build_stage_id_reference.rb
.../background_migration/migrate_build_stage_id_reference.rb
+8
-3
lib/gitlab/database/migration_helpers.rb
lib/gitlab/database/migration_helpers.rb
+1
-1
spec/migrations/migrate_stage_id_reference_in_background_spec.rb
...grations/migrate_stage_id_reference_in_background_spec.rb
+5
-6
No files found.
db/post_migrate/20170628080858_migrate_stage_id_reference_in_background.rb
View file @
fb89ba24
...
...
@@ -7,19 +7,18 @@ class MigrateStageIdReferenceInBackground < ActiveRecord::Migration
disable_ddl_transaction!
class
Build
<
ActiveRecord
::
Base
self
.
table_name
=
'ci_builds'
end
##
# It will take around 3 days to process 20M ci_builds.
#
def
up
index
=
1
opts
=
{
scope:
->
(
table
,
query
)
{
query
.
where
(
table
[
:stage_id
].
eq
(
nil
))
},
of:
BATCH_SIZE
}
Build
.
where
(
stage_id:
nil
).
in_batches
(
of:
BATCH_SIZE
)
do
|
relation
|
jobs
=
relation
.
pluck
(
:id
).
map
{
|
id
|
[
MIGRATION
,
[
id
]]
}
walk_table_in_batches
(
:ci_builds
,
**
opts
)
do
|
index
,
start_id
,
stop_id
|
schedule
=
index
*
2
.
minutes
index
+=
1
BackgroundMigrationWorker
.
perform_bulk_in
(
schedule
,
jobs
)
BackgroundMigrationWorker
.
perform_in
(
schedule
,
MIGRATION
,
[
start_id
,
stop_id
])
end
end
...
...
lib/gitlab/background_migration/migrate_build_stage_id_reference.rb
View file @
fb89ba24
module
Gitlab
module
BackgroundMigration
class
MigrateBuildStageIdReference
def
perform
(
id
)
def
perform
(
start_id
,
stop_id
)
scope
=
if
stop_id
.
nonzero?
"ci_builds.id BETWEEN
#{
start_id
.
to_i
}
AND
#{
stop_id
.
to_i
}
"
else
"ci_builds.id >=
#{
start_id
.
to_i
}
"
end
sql
=
<<-
SQL
.
strip_heredoc
UPDATE "ci_builds"
SET "stage_id" =
(SELECT id FROM ci_stages
WHERE ci_stages.pipeline_id = ci_builds.commit_id
AND ci_stages.name = ci_builds.stage)
WHERE "ci_builds"."id" =
#{
id
.
to_i
}
AND "ci_builds"."stage_id" IS NULL
WHERE
#{
scope
}
AND "ci_builds"."stage_id" IS NULL
SQL
ActiveRecord
::
Base
.
connection
.
execute
(
sql
)
...
...
lib/gitlab/database/migration_helpers.rb
View file @
fb89ba24
...
...
@@ -296,7 +296,7 @@ module Gitlab
MSG
end
# raise
'This method requires a block!' unless block_given?
raise
ArgumentError
,
'This method requires a block!'
unless
block_given?
table_arel
=
Arel
::
Table
.
new
(
table
)
...
...
spec/migrations/migrate_stage_id_reference_in_background_spec.rb
View file @
fb89ba24
...
...
@@ -21,7 +21,7 @@ describe MigrateStageIdReferenceInBackground, :migration, :sidekiq do
let
(
:projects
)
{
table
(
:projects
)
}
before
do
stub_const
(
'MigrateStageIdReferenceInBackground::BATCH_SIZE'
,
2
)
stub_const
(
"
#{
described_class
.
name
}
::BATCH_SIZE"
,
2
)
projects
.
create!
(
id:
123
,
name:
'gitlab1'
,
path:
'gitlab1'
)
projects
.
create!
(
id:
345
,
name:
'gitlab2'
,
path:
'gitlab2'
)
...
...
@@ -47,11 +47,10 @@ describe MigrateStageIdReferenceInBackground, :migration, :sidekiq do
Timecop
.
freeze
do
migrate!
expect
(
described_class
::
MIGRATION
).
to
be_scheduled_migration
(
2
.
minutes
,
1
)
expect
(
described_class
::
MIGRATION
).
to
be_scheduled_migration
(
2
.
minutes
,
2
)
expect
(
described_class
::
MIGRATION
).
to
be_scheduled_migration
(
4
.
minutes
,
3
)
expect
(
described_class
::
MIGRATION
).
to
be_scheduled_migration
(
4
.
minutes
,
4
)
expect
(
BackgroundMigrationWorker
.
jobs
.
size
).
to
eq
5
expect
(
described_class
::
MIGRATION
).
to
be_scheduled_migration
(
2
.
minutes
,
1
,
3
)
expect
(
described_class
::
MIGRATION
).
to
be_scheduled_migration
(
4
.
minutes
,
3
,
5
)
expect
(
described_class
::
MIGRATION
).
to
be_scheduled_migration
(
6
.
minutes
,
5
,
0
)
expect
(
BackgroundMigrationWorker
.
jobs
.
size
).
to
eq
3
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