[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/04: Reduce the derivation deletion batch size
From: |
Christopher Baines |
Subject: |
03/04: Reduce the derivation deletion batch size |
Date: |
Thu, 8 Oct 2020 02:53:02 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository data-service.
commit b540abaeba3749635d5e192010dad0b687deb825
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Thu Oct 8 07:49:28 2020 +0100
Reduce the derivation deletion batch size
---
guix-data-service/data-deletion.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix-data-service/data-deletion.scm
b/guix-data-service/data-deletion.scm
index 7387802..c861d3a 100644
--- a/guix-data-service/data-deletion.scm
+++ b/guix-data-service/data-deletion.scm
@@ -479,7 +479,7 @@ WHERE NOT EXISTS (
) AND NOT EXISTS (
SELECT 1 FROM guix_revision_system_test_derivations
WHERE derivation_id = derivation_outputs.derivation_id
-) LIMIT 10000000")))
+) LIMIT 1000000")))
(derivations-count (length derivations)))
(simple-format (current-error-port)
"Looking at ~A derivations\n"