summaryrefslogtreecommitdiff
path: root/changelogs
diff options
context:
space:
mode:
authorGreg Stark <stark@gitlab.com>2018-01-19 12:44:27 +0000
committerGreg Stark <stark@gitlab.com>2018-02-08 10:08:52 +0100
commit271e7a325340551475ae937aaf2ed7a6344be9e8 (patch)
tree62998df6dab77696d065cbb2c05a4a3370d5bd03 /changelogs
parentdbb934c8e2b5d138721f9d89afcf8ebbf814bed2 (diff)
downloadgitlab-ce-271e7a325340551475ae937aaf2ed7a6344be9e8.tar.gz
Add indexes and change SQL for expired artifacts to deal with artifacts migration efficiently
Artifacts are in the middle of being migrated from ci_builds to ci_job_artifacts. The expiration date is currently visible in both of these tables and the test for whether an expired artifact is present for a job is complex as it requires checking both the of the tables. Add two new indexes, one on ci_builds.artifacts_expire_at and one on ci_job_artifacts.expire_at to enable finding expired artifacts efficiently. And until the migration is finished, replace the SQL for finding expired and non-expired artifacts with a hand-crafted UNION ALL based query instead of using OR. This overcomes a database optimizer limitation that prevents it from using these indexes. When the migration is finished the next version should remove this query and replace it with a much simpler query on just ci_job_artifacts. See https://gitlab.com/gitlab-org/gitlab-ce/issues/42561 for followup.
Diffstat (limited to 'changelogs')
-rw-r--r--changelogs/unreleased/expired-ci-artifacts.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/changelogs/unreleased/expired-ci-artifacts.yml b/changelogs/unreleased/expired-ci-artifacts.yml
new file mode 100644
index 00000000000..2fcbdb02f84
--- /dev/null
+++ b/changelogs/unreleased/expired-ci-artifacts.yml
@@ -0,0 +1,5 @@
+---
+title: Change SQL for expired artifacts to use new ci_job_artifacts.expire_at
+merge_request: 16578
+author:
+type: performance