Skip to content

Optimise rendering of Markdown documents that belong to different projects

Yorick Peterse requested to merge rendering-markdown-multiple-projects into master

What does this MR do?

We extend the Markdown pipeline so we can render multiple documents that may belong to different projects.

These changes combined can quite drastically reduce the number of SQL queries necessary in various places. For example, when displaying the Atom feed of a group these changes reduced the number of SQL queries from 58 to 39 (when combining these changes with https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/18217).

EE merge request: https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/5308

Why was this MR needed?

We keep running into N+1 query problems with the Markdown pipeline. Further, the Groups atom feed would group events per project and render them separately; resulting in many SQL queries being executed.

Does this MR meet the acceptance criteria?

What are the relevant issue numbers?

https://gitlab.com/gitlab-org/gitlab-ce/issues/43048

Edited by Yorick Peterse

Merge request reports