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
0e355e5c
Commit
0e355e5c
authored
Jul 27, 2017
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Load and process at most 100 commits when pushing into default branch
parent
4d05e853
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
16 deletions
+29
-16
app/services/git_push_service.rb
app/services/git_push_service.rb
+21
-10
changelogs/unreleased/dm-large-push-performance.yml
changelogs/unreleased/dm-large-push-performance.yml
+4
-0
lib/gitlab/data_builder/push.rb
lib/gitlab/data_builder/push.rb
+2
-2
spec/services/git_push_service_spec.rb
spec/services/git_push_service_spec.rb
+2
-4
No files found.
app/services/git_push_service.rb
View file @
0e355e5c
...
@@ -45,6 +45,7 @@ class GitPushService < BaseService
...
@@ -45,6 +45,7 @@ class GitPushService < BaseService
elsif
push_to_existing_branch?
elsif
push_to_existing_branch?
# Collect data for this git push
# Collect data for this git push
@push_commits
=
@project
.
repository
.
commits_between
(
params
[
:oldrev
],
params
[
:newrev
])
@push_commits
=
@project
.
repository
.
commits_between
(
params
[
:oldrev
],
params
[
:newrev
])
process_commit_messages
process_commit_messages
# Update the bare repositories info/attributes file using the contents of the default branches
# Update the bare repositories info/attributes file using the contents of the default branches
...
@@ -64,15 +65,21 @@ class GitPushService < BaseService
...
@@ -64,15 +65,21 @@ class GitPushService < BaseService
def
update_caches
def
update_caches
if
is_default_branch?
if
is_default_branch?
paths
=
Set
.
new
if
push_to_new_branch?
# If this is the initial push into the default branch, the file type caches
# will already be reset as a result of `Project#change_head`.
types
=
[]
else
paths
=
Set
.
new
@push_commits
.
each
do
|
commit
|
@push_commits
.
last
(
PROCESS_COMMIT_LIMIT
).
each
do
|
commit
|
commit
.
raw_deltas
.
each
do
|
diff
|
commit
.
raw_deltas
.
each
do
|
diff
|
paths
<<
diff
.
new_path
paths
<<
diff
.
new_path
end
end
end
end
types
=
Gitlab
::
FileDetector
.
types_in_paths
(
paths
.
to_a
)
types
=
Gitlab
::
FileDetector
.
types_in_paths
(
paths
.
to_a
)
end
else
else
types
=
[]
types
=
[]
end
end
...
@@ -84,7 +91,7 @@ class GitPushService < BaseService
...
@@ -84,7 +91,7 @@ class GitPushService < BaseService
def
process_commit_messages
def
process_commit_messages
default
=
is_default_branch?
default
=
is_default_branch?
push_commits
.
last
(
PROCESS_COMMIT_LIMIT
).
each
do
|
commit
|
@
push_commits
.
last
(
PROCESS_COMMIT_LIMIT
).
each
do
|
commit
|
if
commit
.
matches_cross_reference_regex?
if
commit
.
matches_cross_reference_regex?
ProcessCommitWorker
ProcessCommitWorker
.
perform_async
(
project
.
id
,
current_user
.
id
,
commit
.
to_hash
,
default
)
.
perform_async
(
project
.
id
,
current_user
.
id
,
commit
.
to_hash
,
default
)
...
@@ -103,7 +110,7 @@ class GitPushService < BaseService
...
@@ -103,7 +110,7 @@ class GitPushService < BaseService
EventCreateService
.
new
.
push
(
@project
,
current_user
,
build_push_data
)
EventCreateService
.
new
.
push
(
@project
,
current_user
,
build_push_data
)
Ci
::
CreatePipelineService
.
new
(
@project
,
current_user
,
build_push_data
).
execute
(
:push
)
Ci
::
CreatePipelineService
.
new
(
@project
,
current_user
,
build_push_data
).
execute
(
:push
)
SystemHookPushWorker
.
perform_async
(
build_push_data
.
dup
,
:push_hooks
)
SystemHookPushWorker
.
perform_async
(
build_push_data
.
dup
,
:push_hooks
)
@project
.
execute_hooks
(
build_push_data
.
dup
,
:push_hooks
)
@project
.
execute_hooks
(
build_push_data
.
dup
,
:push_hooks
)
@project
.
execute_services
(
build_push_data
.
dup
,
:push_hooks
)
@project
.
execute_services
(
build_push_data
.
dup
,
:push_hooks
)
...
@@ -123,7 +130,10 @@ class GitPushService < BaseService
...
@@ -123,7 +130,10 @@ class GitPushService < BaseService
end
end
def
process_default_branch
def
process_default_branch
@push_commits
=
project
.
repository
.
commits
(
params
[
:newrev
])
@push_commits_count
=
project
.
repository
.
commit_count_for_ref
(
params
[
:ref
])
offset
=
[
@push_commits_count
-
PROCESS_COMMIT_LIMIT
,
0
].
max
@push_commits
=
project
.
repository
.
commits
(
params
[
:newrev
],
offset:
offset
,
limit:
PROCESS_COMMIT_LIMIT
)
# Ensure HEAD points to the default branch in case it is not master
# Ensure HEAD points to the default branch in case it is not master
project
.
change_head
(
branch_name
)
project
.
change_head
(
branch_name
)
...
@@ -152,7 +162,8 @@ class GitPushService < BaseService
...
@@ -152,7 +162,8 @@ class GitPushService < BaseService
params
[
:oldrev
],
params
[
:oldrev
],
params
[
:newrev
],
params
[
:newrev
],
params
[
:ref
],
params
[
:ref
],
push_commits
)
@push_commits
,
commits_count:
@push_commits_count
)
end
end
def
push_to_existing_branch?
def
push_to_existing_branch?
...
...
changelogs/unreleased/dm-large-push-performance.yml
0 → 100644
View file @
0e355e5c
---
title
:
Improve performance of large (initial) push into default branch
merge_request
:
author
:
lib/gitlab/data_builder/push.rb
View file @
0e355e5c
...
@@ -24,11 +24,11 @@ module Gitlab
...
@@ -24,11 +24,11 @@ module Gitlab
# total_commits_count: Fixnum
# total_commits_count: Fixnum
# }
# }
#
#
def
build
(
project
,
user
,
oldrev
,
newrev
,
ref
,
commits
=
[],
message
=
nil
)
def
build
(
project
,
user
,
oldrev
,
newrev
,
ref
,
commits
=
[],
message
=
nil
,
commits_count:
nil
)
commits
=
Array
(
commits
)
commits
=
Array
(
commits
)
# Total commits count
# Total commits count
commits_count
=
commits
.
size
commits_count
||
=
commits
.
size
# Get latest 20 commits ASC
# Get latest 20 commits ASC
commits_limited
=
commits
.
last
(
20
)
commits_limited
=
commits
.
last
(
20
)
...
...
spec/services/git_push_service_spec.rb
View file @
0e355e5c
...
@@ -663,8 +663,7 @@ describe GitPushService, services: true do
...
@@ -663,8 +663,7 @@ describe GitPushService, services: true do
end
end
it
'only schedules a limited number of commits'
do
it
'only schedules a limited number of commits'
do
allow
(
service
).
to
receive
(
:push_commits
)
service
.
push_commits
=
Array
.
new
(
1000
,
double
(
:commit
,
to_hash:
{},
matches_cross_reference_regex?:
true
))
.
and_return
(
Array
.
new
(
1000
,
double
(
:commit
,
to_hash:
{},
matches_cross_reference_regex?:
true
)))
expect
(
ProcessCommitWorker
).
to
receive
(
:perform_async
).
exactly
(
100
).
times
expect
(
ProcessCommitWorker
).
to
receive
(
:perform_async
).
exactly
(
100
).
times
...
@@ -672,8 +671,7 @@ describe GitPushService, services: true do
...
@@ -672,8 +671,7 @@ describe GitPushService, services: true do
end
end
it
"skips commits which don't include cross-references"
do
it
"skips commits which don't include cross-references"
do
allow
(
service
).
to
receive
(
:push_commits
)
service
.
push_commits
=
[
double
(
:commit
,
to_hash:
{},
matches_cross_reference_regex?:
false
)]
.
and_return
([
double
(
:commit
,
to_hash:
{},
matches_cross_reference_regex?:
false
)])
expect
(
ProcessCommitWorker
).
not_to
receive
(
:perform_async
)
expect
(
ProcessCommitWorker
).
not_to
receive
(
:perform_async
)
...
...
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