Commit af7dd99e authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'sh-optimize-pipeline-for-mrs' into 'master'

Fix N+1 queries for PipelinesController#index.json

Closes #207194

See merge request gitlab-org/gitlab!26643
parents c14c5af3 ecaa9456
...@@ -56,8 +56,13 @@ class PipelineSerializer < BaseSerializer ...@@ -56,8 +56,13 @@ class PipelineSerializer < BaseSerializer
:manual_actions, :manual_actions,
:scheduled_actions, :scheduled_actions,
:artifacts, :artifacts,
:merge_request,
:user, :user,
{
merge_request: {
source_project: [:route, { namespace: :route }],
target_project: [:route, { namespace: :route }]
}
},
{ {
pending_builds: :project, pending_builds: :project,
project: [:route, { namespace: :route }], project: [:route, { namespace: :route }],
......
---
title: Fix N+1 queries for PipelinesController#index.json
merge_request: 26643
author:
type: performance
...@@ -38,9 +38,9 @@ describe Projects::PipelinesController do ...@@ -38,9 +38,9 @@ describe Projects::PipelinesController do
expect(response).to match_response_schema('pipeline') expect(response).to match_response_schema('pipeline')
expect(json_response).to include('pipelines') expect(json_response).to include('pipelines')
expect(json_response['pipelines'].count).to eq 5 expect(json_response['pipelines'].count).to eq 6
expect(json_response['count']['all']).to eq '5' expect(json_response['count']['all']).to eq '6'
expect(json_response['count']['running']).to eq '1' expect(json_response['count']['running']).to eq '2'
expect(json_response['count']['pending']).to eq '1' expect(json_response['count']['pending']).to eq '1'
expect(json_response['count']['finished']).to eq '3' expect(json_response['count']['finished']).to eq '3'
...@@ -61,7 +61,7 @@ describe Projects::PipelinesController do ...@@ -61,7 +61,7 @@ describe Projects::PipelinesController do
# There appears to be one extra query for Pipelines#has_warnings? for some reason # There appears to be one extra query for Pipelines#has_warnings? for some reason
expect { get_pipelines_index_json }.not_to exceed_query_limit(control_count + 1) expect { get_pipelines_index_json }.not_to exceed_query_limit(control_count + 1)
expect(response).to have_gitlab_http_status(:ok) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['pipelines'].count).to eq 10 expect(json_response['pipelines'].count).to eq 12
end end
end end
...@@ -77,9 +77,9 @@ describe Projects::PipelinesController do ...@@ -77,9 +77,9 @@ describe Projects::PipelinesController do
expect(response).to match_response_schema('pipeline') expect(response).to match_response_schema('pipeline')
expect(json_response).to include('pipelines') expect(json_response).to include('pipelines')
expect(json_response['pipelines'].count).to eq 5 expect(json_response['pipelines'].count).to eq 6
expect(json_response['count']['all']).to eq '5' expect(json_response['count']['all']).to eq '6'
expect(json_response['count']['running']).to eq '1' expect(json_response['count']['running']).to eq '2'
expect(json_response['count']['pending']).to eq '1' expect(json_response['count']['pending']).to eq '1'
expect(json_response['count']['finished']).to eq '3' expect(json_response['count']['finished']).to eq '3'
...@@ -99,8 +99,9 @@ describe Projects::PipelinesController do ...@@ -99,8 +99,9 @@ describe Projects::PipelinesController do
# There appears to be one extra query for Pipelines#has_warnings? for some reason # There appears to be one extra query for Pipelines#has_warnings? for some reason
expect { get_pipelines_index_json }.not_to exceed_query_limit(control_count + 1) expect { get_pipelines_index_json }.not_to exceed_query_limit(control_count + 1)
expect(response).to have_gitlab_http_status(:ok) expect(response).to have_gitlab_http_status(:ok)
expect(json_response['pipelines'].count).to eq 10 expect(json_response['pipelines'].count).to eq 12
end end
end end
...@@ -139,7 +140,7 @@ describe Projects::PipelinesController do ...@@ -139,7 +140,7 @@ describe Projects::PipelinesController do
it 'returns the pipelines when the user has access' do it 'returns the pipelines when the user has access' do
get_pipelines_index_json get_pipelines_index_json
expect(json_response['pipelines'].size).to eq(5) expect(json_response['pipelines'].size).to eq(6)
end end
end end
...@@ -155,18 +156,32 @@ describe Projects::PipelinesController do ...@@ -155,18 +156,32 @@ describe Projects::PipelinesController do
%w(pending running success failed canceled).each_with_index do |status, index| %w(pending running success failed canceled).each_with_index do |status, index|
create_pipeline(status, project.commit("HEAD~#{index}")) create_pipeline(status, project.commit("HEAD~#{index}"))
end end
create_pipeline_with_merge_request
end
def create_pipeline_with_merge_request
# New merge requests must be created with different branches, so
# let's just create new ones with random names.
branch_name = "test-#{SecureRandom.hex}"
project.repository.create_branch(branch_name, project.repository.root_ref)
mr = create(:merge_request, source_project: project, target_project: project, source_branch: branch_name)
create_pipeline(:running, project.commit('HEAD'), merge_request: mr)
end end
def create_pipeline(status, sha) def create_pipeline(status, sha, merge_request: nil)
user = create(:user) user = create(:user)
pipeline = create(:ci_empty_pipeline, status: status, pipeline = create(:ci_empty_pipeline, status: status,
project: project, project: project,
sha: sha, sha: sha,
user: user) user: user,
merge_request: merge_request)
create_build(pipeline, 'build', 1, 'build', user) create_build(pipeline, 'build', 1, 'build', user)
create_build(pipeline, 'test', 2, 'test', user) create_build(pipeline, 'test', 2, 'test', user)
create_build(pipeline, 'deploy', 3, 'deploy', user) create_build(pipeline, 'deploy', 3, 'deploy', user)
pipeline
end end
def create_build(pipeline, stage, stage_idx, name, user = nil) def create_build(pipeline, stage, stage_idx, name, user = nil)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment