aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-04-29 18:02:06 +0100
committerChristopher Baines <mail@cbaines.net>2020-04-29 18:02:06 +0100
commit5f01bb9edaac3649998c90fe400f4cd98c668d95 (patch)
tree2cf9d08c8389b3060cea95cd34b88c2f52accfa9
parent774971e06ce6b7ac3fe746683aad16463bf1b3ee (diff)
downloadbuild-coordinator-5f01bb9edaac3649998c90fe400f4cd98c668d95.tar
build-coordinator-5f01bb9edaac3649998c90fe400f4cd98c668d95.tar.gz
Add a couple of indexes that should speed up allocating builds
-rw-r--r--sqitch/pg/deploy/allocator_related_indexes.sql7
-rw-r--r--sqitch/pg/revert/allocator_related_indexes.sql7
-rw-r--r--sqitch/pg/verify/allocator_related_indexes.sql7
-rw-r--r--sqitch/sqitch.plan1
-rw-r--r--sqitch/sqlite/deploy/allocator_related_indexes.sql10
-rw-r--r--sqitch/sqlite/revert/allocator_related_indexes.sql7
-rw-r--r--sqitch/sqlite/verify/allocator_related_indexes.sql7
7 files changed, 46 insertions, 0 deletions
diff --git a/sqitch/pg/deploy/allocator_related_indexes.sql b/sqitch/pg/deploy/allocator_related_indexes.sql
new file mode 100644
index 0000000..6e4f902
--- /dev/null
+++ b/sqitch/pg/deploy/allocator_related_indexes.sql
@@ -0,0 +1,7 @@
+-- Deploy guix-build-coordinator:allocator_related_indexes to pg
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/pg/revert/allocator_related_indexes.sql b/sqitch/pg/revert/allocator_related_indexes.sql
new file mode 100644
index 0000000..fead415
--- /dev/null
+++ b/sqitch/pg/revert/allocator_related_indexes.sql
@@ -0,0 +1,7 @@
+-- Revert guix-build-coordinator:allocator_related_indexes from pg
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/pg/verify/allocator_related_indexes.sql b/sqitch/pg/verify/allocator_related_indexes.sql
new file mode 100644
index 0000000..d75e9e0
--- /dev/null
+++ b/sqitch/pg/verify/allocator_related_indexes.sql
@@ -0,0 +1,7 @@
+-- Verify guix-build-coordinator:allocator_related_indexes on pg
+
+BEGIN;
+
+-- XXX Add verifications here.
+
+ROLLBACK;
diff --git a/sqitch/sqitch.plan b/sqitch/sqitch.plan
index 6f49810..565d142 100644
--- a/sqitch/sqitch.plan
+++ b/sqitch/sqitch.plan
@@ -10,3 +10,4 @@ build_results 2020-04-12T19:59:27Z Christopher Baines <mail@cbaines.net> # Creat
setup_failures 2020-04-13T13:05:29Z Christopher Baines <mail@cbaines.net> # Create table for storing setup_failures
output_metadata 2020-04-23T14:26:15Z Christopher Baines <mail@cbaines.net> # Create table for storing output metadata
derivation_outputs_output_index 2020-04-28T17:49:19Z Christopher Baines <mail@cbaines.net> # Add an index on derivation_outputs.output
+allocator_related_indexes 2020-04-29T16:59:14Z Christopher Baines <mail@cbaines.net> # Add a few indexes that should speed up build allocation
diff --git a/sqitch/sqlite/deploy/allocator_related_indexes.sql b/sqitch/sqlite/deploy/allocator_related_indexes.sql
new file mode 100644
index 0000000..0019833
--- /dev/null
+++ b/sqitch/sqlite/deploy/allocator_related_indexes.sql
@@ -0,0 +1,10 @@
+-- Deploy guix-build-coordinator:allocator_related_indexes to sqlite
+
+BEGIN;
+
+CREATE INDEX builds_derivation_name_idx ON builds (derivation_name);
+
+CREATE INDEX setup_failure_missing_inputs_setup_failure_id_idx
+ ON setup_failure_missing_inputs (setup_failure_id);
+
+COMMIT;
diff --git a/sqitch/sqlite/revert/allocator_related_indexes.sql b/sqitch/sqlite/revert/allocator_related_indexes.sql
new file mode 100644
index 0000000..4444272
--- /dev/null
+++ b/sqitch/sqlite/revert/allocator_related_indexes.sql
@@ -0,0 +1,7 @@
+-- Revert guix-build-coordinator:allocator_related_indexes from sqlite
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/sqlite/verify/allocator_related_indexes.sql b/sqitch/sqlite/verify/allocator_related_indexes.sql
new file mode 100644
index 0000000..22320fe
--- /dev/null
+++ b/sqitch/sqlite/verify/allocator_related_indexes.sql
@@ -0,0 +1,7 @@
+-- Verify guix-build-coordinator:allocator_related_indexes on sqlite
+
+BEGIN;
+
+-- XXX Add verifications here.
+
+ROLLBACK;