summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/pipeline/common.rb
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2018-10-25 17:35:31 +0200
committerYorick Peterse <yorickpeterse@gmail.com>2018-11-05 14:28:29 +0100
commitd171ff60168cd55b6d7b9ee920269f44a26e577e (patch)
tree3d8885ab8e70f578a57cb168c7533811cf0da241 /lib/gitlab/ci/status/pipeline/common.rb
parent6d7bf439d6bad4fff6bba0fbdb91edf50974ad4b (diff)
downloadgitlab-ce-d171ff60168cd55b6d7b9ee920269f44a26e577e.tar.gz
Rewrite SnippetsFinder to improve performance
This completely rewrites the SnippetsFinder class from the ground up in order to improve its performance. The old code was beyond salvaging. It was complex, included various Rails 5 workarounds, comments that shouldn't be necessary, and most important of all: it produced a really poorly performing database query. As a result, I opted for rewriting the finder from scratch, instead of trying to patch the existing code. Instead of trying to reuse as many existing methods as possible, I opted for defining new methods specifically meant for the SnippetsFinder. This requires some extra code here and there, but allows us to have much more control over the resulting SQL queries. It is these changes that then allow us to produce a _much_ more efficient query. To illustrate how bad the old query was, we will use my own snippets as an example. Currently I have 52 snippets, most of which are global ones. To retrieve these, you would run the following Ruby code: user = User.find_by(username: 'yorickpeterse') SnippetsFinder.new(user, author: user).execute On GitLab.com the resulting query will take between 10 and 15 seconds to run, producing the query plan found at https://explain.depesz.com/s/Y5IX. Apart from the long execution time, the total number of buffers (the sum of all shared hits) is around 185 GB, though the real number is probably (hopefully) much lower as I doubt simply summing these numbers produces the true total number of buffers used. The new query's plan can be found at https://explain.depesz.com/s/wHdN, and this query takes between 10 and 100-ish milliseconds to run. The total number of buffers used is only about 30 MB. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/52639
Diffstat (limited to 'lib/gitlab/ci/status/pipeline/common.rb')
0 files changed, 0 insertions, 0 deletions