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
0adedbb4
Commit
0adedbb4
authored
Apr 01, 2019
by
Hiroyuki Sato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the bug that the project statistics is not updated
parent
c7f918aa
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
107 additions
and
22 deletions
+107
-22
app/workers/all_queues.yml
app/workers/all_queues.yml
+1
-0
app/workers/project_cache_worker.rb
app/workers/project_cache_worker.rb
+8
-6
app/workers/update_project_statistics_worker.rb
app/workers/update_project_statistics_worker.rb
+22
-0
changelogs/unreleased/delay-update-statictics.yml
changelogs/unreleased/delay-update-statictics.yml
+5
-0
config/sidekiq_queues.yml
config/sidekiq_queues.yml
+2
-1
spec/workers/project_cache_worker_spec.rb
spec/workers/project_cache_worker_spec.rb
+21
-15
spec/workers/update_project_statistics_worker_spec.rb
spec/workers/update_project_statistics_worker_spec.rb
+48
-0
No files found.
app/workers/all_queues.yml
View file @
0adedbb4
...
...
@@ -143,6 +143,7 @@
-
repository_remove_remote
-
system_hook_push
-
update_merge_requests
-
update_project_statistics
-
upload_checksum
-
web_hook
-
repository_update_remote_mirror
...
...
app/workers/project_cache_worker.rb
View file @
0adedbb4
...
...
@@ -28,18 +28,20 @@ class ProjectCacheWorker
def
update_statistics
(
project
,
statistics
=
[])
return
if
Gitlab
::
Database
.
read_only?
return
unless
try_obtain_lease_for
(
project
.
id
,
:update_
statistics
)
return
unless
try_obtain_lease_for
(
project
.
id
,
statistics
)
Rails
.
logger
.
info
(
"Updating statistics for project
#{
project
.
id
}
"
)
project
.
statistics
.
refresh!
(
only:
statistics
)
UpdateProjectStatisticsWorker
.
perform_in
(
LEASE_TIMEOUT
,
project
.
id
,
statistics
)
end
private
def
try_obtain_lease_for
(
project_id
,
s
ection
)
def
try_obtain_lease_for
(
project_id
,
s
tatistics
)
Gitlab
::
ExclusiveLease
.
new
(
"project_cache_worker:
#{
project_id
}
:
#{
section
}
"
,
timeout:
LEASE_TIMEOUT
)
.
new
(
project_cache_worker_key
(
project_id
,
statistics
)
,
timeout:
LEASE_TIMEOUT
)
.
try_obtain
end
def
project_cache_worker_key
(
project_id
,
statistics
)
([
"project_cache_worker"
,
project_id
]
+
statistics
.
sort
).
join
(
":"
)
end
end
app/workers/update_project_statistics_worker.rb
0 → 100644
View file @
0adedbb4
# frozen_string_literal: true
# Worker for updating project statistics.
class
UpdateProjectStatisticsWorker
include
ApplicationWorker
# project_id - The ID of the project for which to flush the cache.
# statistics - An Array containing columns from ProjectStatistics to
# refresh, if empty all columns will be refreshed
# rubocop: disable CodeReuse/ActiveRecord
def
perform
(
project_id
,
statistics
=
[])
project
=
Project
.
find_by
(
id:
project_id
)
return
unless
project
&&
project
.
repository
.
exists?
Rails
.
logger
.
info
(
"Updating statistics for project
#{
project
.
id
}
"
)
project
.
statistics
.
refresh!
(
only:
statistics
.
map
(
&
:to_sym
))
end
# rubocop: enable CodeReuse/ActiveRecord
end
changelogs/unreleased/delay-update-statictics.yml
0 → 100644
View file @
0adedbb4
---
title
:
Fix the bug that the project statistics is not updated
merge_request
:
26854
author
:
Hiroyuki Sato
type
:
fixed
config/sidekiq_queues.yml
View file @
0adedbb4
...
...
@@ -89,4 +89,5 @@
- [project_daily_statistics, 1]
- [import_issues_csv, 2]
- [chat_notification, 2]
- [migrate_external_diffs, 1]
- [migrate_external_diffs, 1]
- [update_project_statistics, 1]
spec/workers/project_cache_worker_spec.rb
View file @
0adedbb4
...
...
@@ -7,9 +7,9 @@ describe ProjectCacheWorker do
let
(
:worker
)
{
described_class
.
new
}
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let
(
:statistics
)
{
project
.
statistics
}
let
(
:lease_key
)
{
"project_cache_worker:
#{
project
.
id
}
:update_statistics"
}
let
(
:lease_key
)
{
([
"project_cache_worker"
,
project
.
id
]
+
statistics
.
sort
).
join
(
":"
)
}
let
(
:lease_timeout
)
{
ProjectCacheWorker
::
LEASE_TIMEOUT
}
let
(
:statistics
)
{
[]
}
describe
'#perform'
do
before
do
...
...
@@ -35,14 +35,6 @@ describe ProjectCacheWorker do
end
context
'with an existing project'
do
it
'updates the project statistics'
do
expect
(
worker
).
to
receive
(
:update_statistics
)
.
with
(
kind_of
(
Project
),
%i(repository_size)
)
.
and_call_original
worker
.
perform
(
project
.
id
,
[],
%w(repository_size)
)
end
it
'refreshes the method caches'
do
expect_any_instance_of
(
Repository
).
to
receive
(
:refresh_method_caches
)
.
with
(
%i(readme)
)
...
...
@@ -51,6 +43,18 @@ describe ProjectCacheWorker do
worker
.
perform
(
project
.
id
,
%w(readme)
)
end
context
'with statistics'
do
let
(
:statistics
)
{
%w(repository_size)
}
it
'updates the project statistics'
do
expect
(
worker
).
to
receive
(
:update_statistics
)
.
with
(
kind_of
(
Project
),
%i(repository_size)
)
.
and_call_original
worker
.
perform
(
project
.
id
,
[],
statistics
)
end
end
context
'with plain readme'
do
it
'refreshes the method caches'
do
allow
(
MarkupHelper
).
to
receive
(
:gitlab_markdown?
).
and_return
(
false
)
...
...
@@ -66,13 +70,15 @@ describe ProjectCacheWorker do
end
describe
'#update_statistics'
do
let
(
:statistics
)
{
%w(repository_size)
}
context
'when a lease could not be obtained'
do
it
'does not update the repository size'
do
stub_exclusive_lease_taken
(
lease_key
,
timeout:
lease_timeout
)
expect
(
statistics
).
not_to
receive
(
:refresh!
)
expect
(
UpdateProjectStatisticsWorker
).
not_to
receive
(
:perform_in
)
worker
.
update_statistics
(
project
)
worker
.
update_statistics
(
project
,
statistics
.
map
(
&
:to_sym
)
)
end
end
...
...
@@ -80,11 +86,11 @@ describe ProjectCacheWorker do
it
'updates the project statistics'
do
stub_exclusive_lease
(
lease_key
,
timeout:
lease_timeout
)
expect
(
statistics
).
to
receive
(
:refresh!
)
.
with
(
only:
%i(repository_size
)
)
expect
(
UpdateProjectStatisticsWorker
).
to
receive
(
:perform_in
)
.
with
(
lease_timeout
,
project
.
id
,
statistics
.
map
(
&
:to_sym
))
.
and_call_original
worker
.
update_statistics
(
project
,
%i(repository_size
)
)
worker
.
update_statistics
(
project
,
statistics
.
map
(
&
:to_sym
))
end
end
end
...
...
spec/workers/update_project_statistics_worker_spec.rb
0 → 100644
View file @
0adedbb4
require
'spec_helper'
describe
UpdateProjectStatisticsWorker
do
let
(
:worker
)
{
described_class
.
new
}
let
(
:project
)
{
create
(
:project
,
:repository
)
}
describe
'#perform'
do
context
'with a non-existing project'
do
it
'does nothing'
do
expect_any_instance_of
(
ProjectStatistics
).
not_to
receive
(
:refresh!
)
worker
.
perform
(
-
1
)
end
end
context
'with an existing project without a repository'
do
it
'does nothing'
do
allow_any_instance_of
(
Repository
).
to
receive
(
:exists?
).
and_return
(
false
)
expect_any_instance_of
(
ProjectStatistics
).
not_to
receive
(
:refresh!
)
worker
.
perform
(
project
.
id
)
end
end
context
'with an existing project'
do
it
'refreshes the project statistics'
do
expect_any_instance_of
(
ProjectStatistics
).
to
receive
(
:refresh!
)
.
with
(
only:
[])
.
and_call_original
worker
.
perform
(
project
.
id
)
end
context
'with a specific statistics target'
do
it
'refreshes the project repository size'
do
statistics_target
=
%w(repository_size)
expect_any_instance_of
(
ProjectStatistics
).
to
receive
(
:refresh!
)
.
with
(
only:
statistics_target
.
map
(
&
:to_sym
))
.
and_call_original
worker
.
perform
(
project
.
id
,
statistics_target
)
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