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
0a4ee10e
Commit
0a4ee10e
authored
Feb 28, 2018
by
Alejandro Rodríguez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix n+1 issue by not reloading fully loaded blobs
parent
369d34c7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
9 deletions
+40
-9
app/controllers/projects/compare_controller.rb
app/controllers/projects/compare_controller.rb
+2
-4
lib/gitlab/git/blob.rb
lib/gitlab/git/blob.rb
+9
-5
spec/lib/gitlab/git/blob_spec.rb
spec/lib/gitlab/git/blob_spec.rb
+29
-0
No files found.
app/controllers/projects/compare_controller.rb
View file @
0a4ee10e
...
@@ -17,10 +17,8 @@ class Projects::CompareController < Projects::ApplicationController
...
@@ -17,10 +17,8 @@ class Projects::CompareController < Projects::ApplicationController
def
show
def
show
apply_diff_view_cookie!
apply_diff_view_cookie!
# n+1: https://gitlab.com/gitlab-org/gitlab-ce/issues/37430
Gitlab
::
GitalyClient
.
allow_n_plus_1_calls
do
render
render
end
end
end
def
diff_for_path
def
diff_for_path
...
...
lib/gitlab/git/blob.rb
View file @
0a4ee10e
...
@@ -238,9 +238,9 @@ module Gitlab
...
@@ -238,9 +238,9 @@ module Gitlab
self
.
__send__
(
"
#{
key
}
="
,
options
[
key
.
to_sym
])
# rubocop:disable GitlabSecurity/PublicSend
self
.
__send__
(
"
#{
key
}
="
,
options
[
key
.
to_sym
])
# rubocop:disable GitlabSecurity/PublicSend
end
end
@loaded_all_data
=
false
# Retain the actual size before it is encoded
# Retain the actual size before it is encoded
@loaded_size
=
@data
.
bytesize
if
@data
@loaded_size
=
@data
.
bytesize
if
@data
@loaded_all_data
=
@loaded_size
==
size
end
end
def
binary?
def
binary?
...
@@ -255,10 +255,15 @@ module Gitlab
...
@@ -255,10 +255,15 @@ module Gitlab
# memory as a Ruby string.
# memory as a Ruby string.
def
load_all_data!
(
repository
)
def
load_all_data!
(
repository
)
return
if
@data
==
''
# don't mess with submodule blobs
return
if
@data
==
''
# don't mess with submodule blobs
return
@data
if
@loaded_all_data
Gitlab
::
GitalyClient
.
migrate
(
:git_blob_load_all_data
)
do
|
is_enabled
|
# Even if we return early, recalculate wether this blob is binary in
@data
=
begin
# case a blob was initialized as text but the full data isn't
@binary
=
nil
return
if
@loaded_all_data
@data
=
Gitlab
::
GitalyClient
.
migrate
(
:git_blob_load_all_data
)
do
|
is_enabled
|
begin
if
is_enabled
if
is_enabled
repository
.
gitaly_blob_client
.
get_blob
(
oid:
id
,
limit:
-
1
).
data
repository
.
gitaly_blob_client
.
get_blob
(
oid:
id
,
limit:
-
1
).
data
else
else
...
@@ -269,7 +274,6 @@ module Gitlab
...
@@ -269,7 +274,6 @@ module Gitlab
@loaded_all_data
=
true
@loaded_all_data
=
true
@loaded_size
=
@data
.
bytesize
@loaded_size
=
@data
.
bytesize
@binary
=
nil
end
end
def
name
def
name
...
...
spec/lib/gitlab/git/blob_spec.rb
View file @
0a4ee10e
...
@@ -500,4 +500,33 @@ describe Gitlab::Git::Blob, seed_helper: true do
...
@@ -500,4 +500,33 @@ describe Gitlab::Git::Blob, seed_helper: true do
end
end
end
end
end
end
describe
'#load_all_data!'
do
let
(
:full_data
)
{
'abcd'
}
let
(
:blob
)
{
Gitlab
::
Git
::
Blob
.
new
(
name:
'test'
,
size:
4
,
data:
'abc'
)
}
subject
{
blob
.
load_all_data!
(
repository
)
}
it
'loads missing data'
do
expect
(
Gitlab
::
GitalyClient
).
to
receive
(
:migrate
)
.
with
(
:git_blob_load_all_data
).
and_return
(
full_data
)
subject
expect
(
blob
.
data
).
to
eq
(
full_data
)
end
context
'with a fully loaded blob'
do
let
(
:blob
)
{
Gitlab
::
Git
::
Blob
.
new
(
name:
'test'
,
size:
4
,
data:
full_data
)
}
it
"doesn't perform any loading"
do
expect
(
Gitlab
::
GitalyClient
).
not_to
receive
(
:migrate
)
.
with
(
:git_blob_load_all_data
)
subject
expect
(
blob
.
data
).
to
eq
(
full_data
)
end
end
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