Commit 1d478913 authored by Douglas Barbosa Alexandre's avatar Douglas Barbosa Alexandre

Merge branch 'id-reduce-number-of-sql-requests-for-create-commit-signature-worker' into 'master'

Reduce SQL requests number for CreateCommitSignatureWorker

See merge request gitlab-org/gitlab!29479
parents ea0fa636 08cf5f7f
...@@ -21,14 +21,19 @@ class CreateCommitSignatureWorker # rubocop:disable Scalability/IdempotentWorker ...@@ -21,14 +21,19 @@ class CreateCommitSignatureWorker # rubocop:disable Scalability/IdempotentWorker
return if commits.empty? return if commits.empty?
# This calculates and caches the signature in the database # Instantiate commits first to lazily load the signatures
commits.each do |commit| commits.map! do |commit|
case commit.signature_type case commit.signature_type
when :PGP when :PGP
Gitlab::Gpg::Commit.new(commit).signature Gitlab::Gpg::Commit.new(commit)
when :X509 when :X509
Gitlab::X509::Commit.new(commit).signature Gitlab::X509::Commit.new(commit)
end end
end
# This calculates and caches the signature in the database
commits.each do |commit|
commit&.signature
rescue => e rescue => e
Rails.logger.error("Failed to create signature for commit #{commit.id}. Error: #{e.message}") # rubocop:disable Gitlab/RailsLogger Rails.logger.error("Failed to create signature for commit #{commit.id}. Error: #{e.message}") # rubocop:disable Gitlab/RailsLogger
end end
......
---
title: Reduce SQL requests number for CreateCommitSignatureWorker
merge_request: 29479
author:
type: performance
...@@ -4,6 +4,8 @@ module Gitlab ...@@ -4,6 +4,8 @@ module Gitlab
class SignedCommit class SignedCommit
include Gitlab::Utils::StrongMemoize include Gitlab::Utils::StrongMemoize
delegate :id, to: :@commit
def initialize(commit) def initialize(commit)
@commit = commit @commit = commit
......
...@@ -9,14 +9,14 @@ describe CreateCommitSignatureWorker do ...@@ -9,14 +9,14 @@ describe CreateCommitSignatureWorker do
let(:gpg_commit) { instance_double(Gitlab::Gpg::Commit) } let(:gpg_commit) { instance_double(Gitlab::Gpg::Commit) }
let(:x509_commit) { instance_double(Gitlab::X509::Commit) } let(:x509_commit) { instance_double(Gitlab::X509::Commit) }
context 'when a signature is found' do before do
before do allow(Project).to receive(:find_by).with(id: project.id).and_return(project)
allow(Project).to receive(:find_by).with(id: project.id).and_return(project) allow(project).to receive(:commits_by).with(oids: commit_shas).and_return(commits)
allow(project).to receive(:commits_by).with(oids: commit_shas).and_return(commits) end
end
subject { described_class.new.perform(commit_shas, project.id) } subject { described_class.new.perform(commit_shas, project.id) }
context 'when a signature is found' do
it 'calls Gitlab::Gpg::Commit#signature' do it 'calls Gitlab::Gpg::Commit#signature' do
commits.each do |commit| commits.each do |commit|
allow(commit).to receive(:signature_type).and_return(:PGP) allow(commit).to receive(:signature_type).and_return(:PGP)
...@@ -67,9 +67,10 @@ describe CreateCommitSignatureWorker do ...@@ -67,9 +67,10 @@ describe CreateCommitSignatureWorker do
end end
context 'handles when a string is passed in for the commit SHA' do context 'handles when a string is passed in for the commit SHA' do
let(:commit_shas) { super().first }
before do before do
allow(Project).to receive(:find_by).with(id: project.id).and_return(project) allow(project).to receive(:commits_by).with(oids: [commit_shas]).and_return(commits)
allow(project).to receive(:commits_by).with(oids: Array(commit_shas.first)).and_return(commits)
allow(commits.first).to receive(:signature_type).and_return(:PGP) allow(commits.first).to receive(:signature_type).and_return(:PGP)
end end
...@@ -78,35 +79,65 @@ describe CreateCommitSignatureWorker do ...@@ -78,35 +79,65 @@ describe CreateCommitSignatureWorker do
expect(gpg_commit).to receive(:signature).once expect(gpg_commit).to receive(:signature).once
described_class.new.perform(commit_shas.first, project.id) subject
end end
end end
context 'when Commit is not found' do context 'when Commit is not found' do
let(:nonexisting_commit_sha) { '0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a34' } let(:nonexisting_commit_sha) { '0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a34' }
let(:commit_shas) { [nonexisting_commit_sha] }
it 'does not raise errors' do it 'does not raise errors' do
expect { described_class.new.perform([nonexisting_commit_sha], project.id) }.not_to raise_error expect { described_class.new.perform(commit_shas, project.id) }.not_to raise_error
end end
end end
context 'when Project is not found' do context 'when Project is not found' do
let(:nonexisting_project_id) { -1 } let(:commits) { [] }
let(:project) { double(id: non_existing_record_id) }
it 'does not raise errors' do it 'does not raise errors' do
expect { described_class.new.perform(commit_shas, nonexisting_project_id) }.not_to raise_error expect { subject }.not_to raise_error
end end
it 'does not call Gitlab::Gpg::Commit#signature' do it 'does not call Gitlab::Gpg::Commit#signature' do
expect_any_instance_of(Gitlab::Gpg::Commit).not_to receive(:signature) expect_any_instance_of(Gitlab::Gpg::Commit).not_to receive(:signature)
described_class.new.perform(commit_shas, nonexisting_project_id) subject
end end
it 'does not call Gitlab::X509::Commit#signature' do it 'does not call Gitlab::X509::Commit#signature' do
expect_any_instance_of(Gitlab::X509::Commit).not_to receive(:signature) expect_any_instance_of(Gitlab::X509::Commit).not_to receive(:signature)
described_class.new.perform(commit_shas, nonexisting_project_id) subject
end
end
context 'fetching signatures' do
before do
commits.each do |commit|
allow(commit).to receive(:signature_type).and_return(type)
end
end
context 'X509' do
let(:type) { :X509 }
it 'performs a single query for commit signatures' do
expect(X509CommitSignature).to receive(:by_commit_sha).with(commit_shas).once.and_return([])
subject
end
end
context 'PGP' do
let(:type) { :PGP }
it 'performs a single query for commit signatures' do
expect(GpgSignature).to receive(:by_commit_sha).with(commit_shas).once.and_return([])
subject
end
end end
end end
end end
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