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
a9c868d1
Commit
a9c868d1
authored
Nov 23, 2017
by
Michael Kozono
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bulk insert uploads
parent
908aacdd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
49 deletions
+14
-49
populate_untracked_uploads.rb
...gitlab/background_migration/populate_untracked_uploads.rb
+14
-49
No files found.
lib/gitlab/background_migration/populate_untracked_uploads.rb
View file @
a9c868d1
...
...
@@ -56,7 +56,8 @@ module Gitlab
uploader:
uploader
,
model_type:
model_type
,
model_id:
model_id
,
size:
file_size
size:
file_size
,
checksum:
checksum
}
end
...
...
@@ -90,10 +91,13 @@ module Gitlab
end
def
file_size
absolute_path
=
File
.
join
(
CarrierWave
.
root
,
path
)
File
.
size
(
absolute_path
)
end
def
checksum
Digest
::
SHA256
.
file
(
absolute_path
).
hexdigest
end
# Not including a leading slash
def
path_relative_to_upload_dir
base
=
%r{
\A
#{
Regexp
.
escape
(
Gitlab
::
BackgroundMigration
::
PrepareUntrackedUploads
::
RELATIVE_UPLOAD_DIR
)
}
/}
...
...
@@ -120,55 +124,14 @@ module Gitlab
project
=
Project
.
find_by_full_path
(
full_path
)
project
.
id
.
to_s
end
end
# Copy-pasted class for less fragile migration
class
Upload
<
ActiveRecord
::
Base
self
.
table_name
=
'uploads'
# This is the only line different from copy-paste
# Upper limit for foreground checksum processing
CHECKSUM_THRESHOLD
=
100
.
megabytes
belongs_to
:model
,
polymorphic:
true
# rubocop:disable Cop/PolymorphicAssociations
before_save
:calculate_checksum
,
if: :foreground_checksum?
after_commit
:schedule_checksum
,
unless: :foreground_checksum?
def
absolute_path
return
path
unless
relative_path?
uploader_class
.
absolute_path
(
self
)
end
def
calculate_checksum
return
unless
exist?
self
.
checksum
=
Digest
::
SHA256
.
file
(
absolute_path
).
hexdigest
rescue
StandardError
schedule_checksum
end
def
exist?
File
.
exist?
(
absolute_path
)
end
private
def
foreground_checksum?
size
<=
CHECKSUM_THRESHOLD
end
def
schedule_checksum
UploadChecksumWorker
.
perform_async
(
id
)
end
def
relative_path?
!
path
.
start_with?
(
'/'
)
File
.
join
(
CarrierWave
.
root
,
path
)
end
end
def
uploader_class
Object
.
const_get
(
uploader
)
end
class
Upload
<
ActiveRecord
::
Base
self
.
table_name
=
'uploads'
end
def
perform
(
start_id
,
end_id
)
...
...
@@ -207,9 +170,11 @@ module Gitlab
end
def
insert
(
files
)
files
.
each
do
|
file
|
Upload
.
create!
(
file
.
to_h
)
rows
=
files
.
map
do
|
file
|
file
.
to_h
.
merge
(
created_at:
'NOW()'
)
end
Gitlab
::
Database
.
bulk_insert
(
'uploads'
,
rows
)
end
def
drop_temp_table_if_finished
...
...
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