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
40f51ecb
Commit
40f51ecb
authored
Mar 13, 2017
by
Bob Van Landuyt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Port of 27376-cache-default-branch-pipeline-on-project to EE
parent
50aa3923
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
330 additions
and
6 deletions
+330
-6
app/controllers/dashboard/projects_controller.rb
app/controllers/dashboard/projects_controller.rb
+1
-1
app/helpers/ci_status_helper.rb
app/helpers/ci_status_helper.rb
+14
-0
app/models/ci/pipeline.rb
app/models/ci/pipeline.rb
+6
-0
app/models/ci/pipeline_status.rb
app/models/ci/pipeline_status.rb
+77
-0
app/models/project.rb
app/models/project.rb
+4
-0
app/views/shared/projects/_project.html.haml
app/views/shared/projects/_project.html.haml
+3
-3
changelogs/unreleased/27376-cache-default-branch-pipeline-on-project.yml
...leased/27376-cache-default-branch-pipeline-on-project.yml
+4
-0
spec/features/dashboard/projects_spec.rb
spec/features/dashboard/projects_spec.rb
+24
-2
spec/models/ci/pipeline_spec.rb
spec/models/ci/pipeline_spec.rb
+13
-0
spec/models/ci/pipeline_status_spec.rb
spec/models/ci/pipeline_status_spec.rb
+173
-0
spec/models/project_spec.rb
spec/models/project_spec.rb
+11
-0
No files found.
app/controllers/dashboard/projects_controller.rb
View file @
40f51ecb
...
...
@@ -42,7 +42,7 @@ class Dashboard::ProjectsController < Dashboard::ApplicationController
private
def
load_projects
(
base_scope
)
projects
=
base_scope
.
sorted_by_activity
.
includes
(
:
namespac
e
)
projects
=
base_scope
.
sorted_by_activity
.
includes
(
:
route
,
namespace: :rout
e
)
filter_projects
(
projects
)
end
...
...
app/helpers/ci_status_helper.rb
View file @
40f51ecb
...
...
@@ -59,6 +59,20 @@ module CiStatusHelper
custom_icon
(
icon_name
)
end
def
render_project_pipeline_status
(
pipeline_status
,
tooltip_placement:
'auto left'
)
project
=
pipeline_status
.
project
path
=
pipelines_namespace_project_commit_path
(
project
.
namespace
,
project
,
pipeline_status
.
sha
)
render_status_with_link
(
'commit'
,
pipeline_status
.
status
,
path
,
tooltip_placement:
tooltip_placement
)
end
def
render_commit_status
(
commit
,
ref:
nil
,
tooltip_placement:
'auto left'
)
project
=
commit
.
project
path
=
pipelines_namespace_project_commit_path
(
...
...
app/models/ci/pipeline.rb
View file @
40f51ecb
...
...
@@ -22,6 +22,7 @@ module Ci
validate
:valid_commit_sha
,
unless: :importing?
after_create
:keep_around_commits
,
unless: :importing?
after_create
:refresh_build_status_cache
state_machine
:status
,
initial: :created
do
event
:enqueue
do
...
...
@@ -328,6 +329,7 @@ module Ci
when
'manual'
then
block
end
end
refresh_build_status_cache
end
def
predefined_variables
...
...
@@ -369,6 +371,10 @@ module Ci
.
fabricate!
end
def
refresh_build_status_cache
Ci
::
PipelineStatus
.
new
(
project
,
sha:
sha
,
status:
status
).
store_in_cache_if_needed
end
private
def
pipeline_data
...
...
app/models/ci/pipeline_status.rb
0 → 100644
View file @
40f51ecb
# This class is not backed by a table in the main database.
# It loads the latest Pipeline for the HEAD of a repository, and caches that
# in Redis.
module
Ci
class
PipelineStatus
attr_accessor
:sha
,
:status
,
:project
,
:loaded
delegate
:commit
,
to: :project
def
self
.
load_for_project
(
project
)
new
(
project
).
tap
do
|
status
|
status
.
load_status
end
end
def
initialize
(
project
,
sha:
nil
,
status:
nil
)
@project
=
project
@sha
=
sha
@status
=
status
end
def
has_status?
loaded?
&&
sha
.
present?
&&
status
.
present?
end
def
load_status
return
if
loaded?
if
has_cache?
load_from_cache
else
load_from_commit
store_in_cache
end
self
.
loaded
=
true
end
def
load_from_commit
return
unless
commit
self
.
sha
=
commit
.
sha
self
.
status
=
commit
.
status
end
# We only cache the status for the HEAD commit of a project
# This status is rendered in project lists
def
store_in_cache_if_needed
return
unless
sha
return
delete_from_cache
unless
commit
store_in_cache
if
commit
.
sha
==
self
.
sha
end
def
load_from_cache
self
.
sha
,
self
.
status
=
Gitlab
::
Redis
.
with
{
|
redis
|
redis
.
hmget
(
project_pipeline_status_key
,
:sha
,
:status
)
}
end
def
store_in_cache
Gitlab
::
Redis
.
with
{
|
redis
|
redis
.
mapped_hmset
(
project_pipeline_status_key
,
{
sha:
sha
,
status:
status
})
}
end
def
delete_from_cache
Gitlab
::
Redis
.
with
{
|
redis
|
redis
.
del
(
project_pipeline_status_key
)
}
end
def
has_cache?
Gitlab
::
Redis
.
with
{
|
redis
|
redis
.
exists
(
project_pipeline_status_key
)
}
end
def
loaded?
self
.
loaded
end
def
project_pipeline_status_key
"projects/
#{
project
.
id
}
/build_status"
end
end
end
app/models/project.rb
View file @
40f51ecb
...
...
@@ -1414,6 +1414,10 @@ class Project < ActiveRecord::Base
end
end
def
pipeline_status
@pipeline_status
||=
Ci
::
PipelineStatus
.
load_for_project
(
self
)
end
def
mark_import_as_failed
(
error_message
)
original_errors
=
errors
.
dup
sanitized_message
=
Gitlab
::
UrlSanitizer
.
sanitize
(
error_message
)
...
...
app/views/shared/projects/_project.html.haml
View file @
40f51ecb
...
...
@@ -7,16 +7,16 @@
-
show_last_commit_as_description
=
false
unless
local_assigns
[
:show_last_commit_as_description
]
==
true
&&
project
.
commit
-
css_class
+=
" no-description"
if
project
.
description
.
blank?
&&
!
show_last_commit_as_description
-
cache_key
=
[
project
.
namespace
,
project
,
controller
.
controller_name
,
controller
.
action_name
,
current_application_settings
,
'v2.3'
]
-
cache_key
.
push
(
project
.
commit
.
status
)
if
project
.
commit
.
try
(
:status
)
-
cache_key
.
push
(
project
.
pipeline_status
)
if
project
.
pipeline_status
.
has_status?
%li
.project-row
{
class:
css_class
}
=
cache
(
cache_key
)
do
.controls
-
if
project
.
archived
%span
.label.label-warning
archived
-
if
project
.
commit
.
try
(
:status
)
-
if
project
.
pipeline_status
.
has_status?
%span
=
render_
commit_status
(
project
.
commit
)
=
render_
project_pipeline_status
(
project
.
pipeline_status
)
-
if
forks
%span
=
icon
(
'code-fork'
)
...
...
changelogs/unreleased/27376-cache-default-branch-pipeline-on-project.yml
0 → 100644
View file @
40f51ecb
---
title
:
Speed up project dashboard by caching pipeline status and eager loading routes
merge_request
:
9903
author
:
spec/features/dashboard/projects_spec.rb
View file @
40f51ecb
require
'spec_helper'
RSpec
.
describe
'Dashboard Projects'
,
feature:
true
do
let
(
:user
)
{
create
(
:user
)
}
let
(
:project
)
{
create
(
:project
,
name:
"awesome stuff"
)
}
before
do
login_as
(
create
:user
)
project
.
team
<<
[
user
,
:developer
]
login_as
user
visit
dashboard_projects_path
end
it
'shows the project the user in a member of in the list'
do
visit
dashboard_projects_path
expect
(
page
).
to
have_content
(
'awesome stuff'
)
end
describe
"with a pipeline"
do
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
:success
,
project:
project
,
sha:
project
.
commit
.
sha
)
}
before
do
pipeline
end
it
'shows that the last pipeline passed'
do
visit
dashboard_projects_path
expect
(
page
).
to
have_xpath
(
"//a[@href='
#{
pipelines_namespace_project_commit_path
(
project
.
namespace
,
project
,
project
.
commit
)
}
']"
)
end
end
it_behaves_like
"an autodiscoverable RSS feed with current_user's private token"
end
spec/models/ci/pipeline_spec.rb
View file @
40f51ecb
...
...
@@ -1018,6 +1018,19 @@ describe Ci::Pipeline, models: true do
end
end
describe
'#update_status'
do
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
sha:
'123456'
)
}
it
'updates the cached status'
do
fake_status
=
double
# after updating the status, the status is set to `skipped` for this pipeline's builds
expect
(
Ci
::
PipelineStatus
).
to
receive
(
:new
).
with
(
pipeline
.
project
,
sha:
'123456'
,
status:
'skipped'
).
and_return
(
fake_status
)
expect
(
fake_status
).
to
receive
(
:store_in_cache_if_needed
)
pipeline
.
update_status
end
end
describe
'notifications when pipeline success or failed'
do
let
(
:project
)
{
create
(
:project
,
:repository
)
}
...
...
spec/models/ci/pipeline_status_spec.rb
0 → 100644
View file @
40f51ecb
require
'spec_helper'
describe
Ci
::
PipelineStatus
do
let
(
:project
)
{
create
(
:project
)
}
let
(
:pipeline_status
)
{
described_class
.
new
(
project
)
}
describe
'.load_for_project'
do
it
"loads the status"
do
expect_any_instance_of
(
described_class
).
to
receive
(
:load_status
)
described_class
.
load_for_project
(
project
)
end
end
describe
'#has_status?'
do
it
"is false when the status wasn't loaded yet"
do
expect
(
pipeline_status
.
has_status?
).
to
be_falsy
end
it
'is true when all status information was loaded'
do
fake_commit
=
double
allow
(
fake_commit
).
to
receive
(
:status
).
and_return
(
'failed'
)
allow
(
fake_commit
).
to
receive
(
:sha
).
and_return
(
'failed424d1b73bc0d3cb726eb7dc4ce17a4d48552f8c6'
)
allow
(
pipeline_status
).
to
receive
(
:commit
).
and_return
(
fake_commit
)
allow
(
pipeline_status
).
to
receive
(
:has_cache?
).
and_return
(
false
)
pipeline_status
.
load_status
expect
(
pipeline_status
.
has_status?
).
to
be_truthy
end
end
describe
'#load_status'
do
it
'loads the status from the cache when there is one'
do
expect
(
pipeline_status
).
to
receive
(
:has_cache?
).
and_return
(
true
)
expect
(
pipeline_status
).
to
receive
(
:load_from_cache
)
pipeline_status
.
load_status
end
it
'loads the status from the project commit when there is no cache'
do
allow
(
pipeline_status
).
to
receive
(
:has_cache?
).
and_return
(
false
)
expect
(
pipeline_status
).
to
receive
(
:load_from_commit
)
pipeline_status
.
load_status
end
it
'stores the status in the cache when it loading it from the project'
do
allow
(
pipeline_status
).
to
receive
(
:has_cache?
).
and_return
(
false
)
allow
(
pipeline_status
).
to
receive
(
:load_from_commit
)
expect
(
pipeline_status
).
to
receive
(
:store_in_cache
)
pipeline_status
.
load_status
end
it
'sets the state to loaded'
do
pipeline_status
.
load_status
expect
(
pipeline_status
).
to
be_loaded
end
it
'only loads the status once'
do
expect
(
pipeline_status
).
to
receive
(
:has_cache?
).
and_return
(
true
).
exactly
(
1
)
expect
(
pipeline_status
).
to
receive
(
:load_from_cache
).
exactly
(
1
)
pipeline_status
.
load_status
pipeline_status
.
load_status
end
end
describe
"#load_from_commit"
do
let!
(
:pipeline
)
{
create
(
:ci_pipeline
,
:success
,
project:
project
,
sha:
project
.
commit
.
sha
)
}
it
'reads the status from the pipeline for the commit'
do
pipeline_status
.
load_from_commit
expect
(
pipeline_status
.
status
).
to
eq
(
'success'
)
expect
(
pipeline_status
.
sha
).
to
eq
(
project
.
commit
.
sha
)
end
it
"doesn't fail for an empty project"
do
status_for_empty_commit
=
described_class
.
new
(
create
(
:empty_project
))
status_for_empty_commit
.
load_status
expect
(
status_for_empty_commit
).
to
be_loaded
end
end
describe
"#store_in_cache"
,
:redis
do
it
"sets the object in redis"
do
pipeline_status
.
sha
=
'123456'
pipeline_status
.
status
=
'failed'
pipeline_status
.
store_in_cache
read_sha
,
read_status
=
Gitlab
::
Redis
.
with
{
|
redis
|
redis
.
hmget
(
"projects/
#{
project
.
id
}
/build_status"
,
:sha
,
:status
)
}
expect
(
read_sha
).
to
eq
(
'123456'
)
expect
(
read_status
).
to
eq
(
'failed'
)
end
end
describe
'#store_in_cache_if_needed'
,
:redis
do
it
'stores the state in the cache when the sha is the HEAD of the project'
do
create
(
:ci_pipeline
,
:success
,
project:
project
,
sha:
project
.
commit
.
sha
)
build_status
=
described_class
.
load_for_project
(
project
)
build_status
.
store_in_cache_if_needed
sha
,
status
=
Gitlab
::
Redis
.
with
{
|
redis
|
redis
.
hmget
(
"projects/
#{
project
.
id
}
/build_status"
,
:sha
,
:status
)
}
expect
(
sha
).
not_to
be_nil
expect
(
status
).
not_to
be_nil
end
it
"doesn't store the status in redis when the sha is not the head of the project"
do
other_status
=
described_class
.
new
(
project
,
sha:
"123456"
,
status:
"failed"
)
other_status
.
store_in_cache_if_needed
sha
,
status
=
Gitlab
::
Redis
.
with
{
|
redis
|
redis
.
hmget
(
"projects/
#{
project
.
id
}
/build_status"
,
:sha
,
:status
)
}
expect
(
sha
).
to
be_nil
expect
(
status
).
to
be_nil
end
it
"deletes the cache if the repository doesn't have a head commit"
do
empty_project
=
create
(
:empty_project
)
Gitlab
::
Redis
.
with
{
|
redis
|
redis
.
mapped_hmset
(
"projects/
#{
empty_project
.
id
}
/build_status"
,
{
sha:
"sha"
,
status:
"pending"
})
}
other_status
=
described_class
.
new
(
empty_project
,
sha:
"123456"
,
status:
"failed"
)
other_status
.
store_in_cache_if_needed
sha
,
status
=
Gitlab
::
Redis
.
with
{
|
redis
|
redis
.
hmget
(
"projects/
#{
empty_project
.
id
}
/build_status"
,
:sha
,
:status
)
}
expect
(
sha
).
to
be_nil
expect
(
status
).
to
be_nil
end
end
describe
"with a status in redis"
,
:redis
do
let
(
:status
)
{
'success'
}
let
(
:sha
)
{
'424d1b73bc0d3cb726eb7dc4ce17a4d48552f8c6'
}
before
do
Gitlab
::
Redis
.
with
{
|
redis
|
redis
.
mapped_hmset
(
"projects/
#{
project
.
id
}
/build_status"
,
{
sha:
sha
,
status:
status
})
}
end
describe
'#load_from_cache'
do
it
'reads the status from redis'
do
pipeline_status
.
load_from_cache
expect
(
pipeline_status
.
sha
).
to
eq
(
sha
)
expect
(
pipeline_status
.
status
).
to
eq
(
status
)
end
end
describe
'#has_cache?'
do
it
'knows the status is cached'
do
expect
(
pipeline_status
.
has_cache?
).
to
be_truthy
end
end
describe
'#delete_from_cache'
do
it
'deletes values from redis'
do
pipeline_status
.
delete_from_cache
key_exists
=
Gitlab
::
Redis
.
with
{
|
redis
|
redis
.
exists
(
"projects/
#{
project
.
id
}
/build_status"
)
}
expect
(
key_exists
).
to
be_falsy
end
end
end
end
spec/models/project_spec.rb
View file @
40f51ecb
...
...
@@ -2308,4 +2308,15 @@ describe Project, models: true do
end
end
end
describe
'#pipeline_status'
do
let
(
:project
)
{
create
(
:project
)
}
it
'builds a pipeline status'
do
expect
(
project
.
pipeline_status
).
to
be_a
(
Ci
::
PipelineStatus
)
end
it
'hase a loaded pipeline status'
do
expect
(
project
.
pipeline_status
).
to
be_loaded
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