Initial commit of WIP code for consideration

Squash this commit and reword before merging..
This commit is contained in:
Kerri Miller 2019-08-07 15:13:13 +00:00 committed by Douwe Maan
parent 35e49d3be0
commit 336d3ccc65
5 changed files with 48 additions and 21 deletions

View File

@ -0,0 +1,5 @@
---
title: Batch processing of commit refs in markdown processing
merge_request: 31037
author:
type: performance

View File

@ -337,6 +337,24 @@ module Banzai
@current_project_namespace_path ||= project&.namespace&.full_path
end
def records_per_parent
@_records_per_project ||= {}
@_records_per_project[object_class.to_s.underscore] ||= begin
hash = Hash.new { |h, k| h[k] = {} }
parent_per_reference.each do |path, parent|
record_ids = references_per_parent[path]
parent_records(parent, record_ids).each do |record|
hash[parent][record_identifier(record)] = record
end
end
hash
end
end
private
def full_project_path(namespace, project_ref)

View File

@ -19,12 +19,11 @@ module Banzai
end
def find_object(project, id)
return unless project.is_a?(Project)
return unless project.is_a?(Project) && project.valid_repo?
if project && project.valid_repo?
# n+1: https://gitlab.com/gitlab-org/gitlab-ce/issues/43894
Gitlab::GitalyClient.allow_n_plus_1_calls { project.commit(id) }
end
_, record = records_per_parent[project].detect { |k, _v| Gitlab::Git.shas_eql?(k, id) }
record
end
def referenced_merge_request_commit_shas
@ -66,6 +65,14 @@ module Banzai
private
def record_identifier(record)
record.id
end
def parent_records(parent, ids)
parent.commits_by(oids: ids.to_a)
end
def noteable
context[:noteable]
end

View File

@ -3,22 +3,8 @@
module Banzai
module Filter
class IssuableReferenceFilter < AbstractReferenceFilter
def records_per_parent
@records_per_project ||= {}
@records_per_project[object_class.to_s.underscore] ||= begin
hash = Hash.new { |h, k| h[k] = {} }
parent_per_reference.each do |path, parent|
record_ids = references_per_parent[path]
parent_records(parent, record_ids).each do |record|
hash[parent][record.iid.to_i] = record
end
end
hash
end
def record_identifier(record)
record.iid.to_i
end
def find_object(parent, iid)

View File

@ -105,6 +105,17 @@ describe Banzai::Filter::CommitReferenceFilter do
expect(doc.css('a').first[:href]).to eq(url)
end
context "a doc with many (29) strings that could be SHAs" do
let!(:oids) { noteable.commits.collect(&:id) }
it 'makes only a single request to Gitaly' do
expect(Gitlab::GitalyClient).to receive(:allow_n_plus_1_calls).exactly(0).times
expect(Gitlab::Git::Commit).to receive(:batch_by_oid).once.and_call_original
reference_filter("A big list of SHAs #{oids.join(", ")}", noteable: noteable)
end
end
end
end