aboutsummaryrefslogtreecommitdiff
path: root/sqitch/sqitch.plan
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2019-07-07 21:23:18 +0100
committerChristopher Baines <mail@cbaines.net>2019-07-07 21:23:18 +0100
commit2ea78cff47fd05d658a5f3c02f64f44c4404d995 (patch)
tree1b55460dc9bb49ca1d4a5758b3fbd34aa9da5bb0 /sqitch/sqitch.plan
parentc00405e23273d998f77ab930d209062ea892aa10 (diff)
downloaddata-service-2ea78cff47fd05d658a5f3c02f64f44c4404d995.tar
data-service-2ea78cff47fd05d658a5f3c02f64f44c4404d995.tar.gz
Tweak how logs are stored
Previously, the query for the jobs page was really slow, as it checked the load_new_guix_revision_job_log_parts table for each job, doing a sequential scan through the potentially large table. Adding an index didn't seem to help, as the query planner would belive the query could return loads of rows, where actually, all that needed checking is whether a single row existed with a given job_id. To avoid adding the index to the load_new_guix_revision_job_log_parts table, and fighting with the query planner, this commit changes the load_new_guix_revision_job_logs table to include a blank entry for jobs which are currently being processed. This is inserted at the start of the job, and then updated at the end to combine and replace all the parts. This all means that the jobs page should render quickly now.
Diffstat (limited to 'sqitch/sqitch.plan')
-rw-r--r--sqitch/sqitch.plan1
1 files changed, 1 insertions, 0 deletions
diff --git a/sqitch/sqitch.plan b/sqitch/sqitch.plan
index a03da58..7a37548 100644
--- a/sqitch/sqitch.plan
+++ b/sqitch/sqitch.plan
@@ -14,3 +14,4 @@ license_support 2019-05-13T20:37:40Z Christopher Baines <mail@cbaines.net> # Add
dates_to_load_new_guix_revision_jobs 2019-06-02T07:39:49Z Christopher Baines <mail@cbaines.net> # Add dates to the load_new_guix_revision_jobs table
load_new_guix_revision_job_events 2019-06-02T15:44:41Z Christopher Baines <mail@cbaines.net> # Add new table for guix_revision_job_events
load_new_guix_revision_job_logs 2019-06-21T14:33:09Z chris <chris@phact> # Add load_new_guix_revision_job_logs
+change_load_new_guix_revision_job_logs_contents_to_be_nullable 2019-07-07T20:10:54Z Christopher Baines <mail@cbaines.net> # Change the contents field in the load_new_guix_revision_job_logs table\nto be nullable.\n\nwith '#' will # be ignored, and an empty message aborts the add. #\nChange to add: # #\nchange_load_new_guix_revision_job_logs_contents_to_be_nullable #\nsqitch/deploy/change_load_new_guix_revision_job_logs_contents_to_be_nullable.sql\nsqitch/revert/change_load_new_guix_revision_job_logs_contents_to_be_nullable.sql\nsqitch/verify/change_load_new_guix_revision_job_logs_contents_to_be_nullable.sql