[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/20: Use a dedicated fiber for heap size monitoring
From: |
Christopher Baines |
Subject: |
01/20: Use a dedicated fiber for heap size monitoring |
Date: |
Mon, 4 Nov 2024 12:27:26 -0500 (EST) |
cbaines pushed a commit to branch master
in repository data-service.
commit f1071cbd4d4a5a9a2026fe32e20777cc628f4686
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Sun Oct 27 13:55:16 2024 +0000
Use a dedicated fiber for heap size monitoring
---
guix-data-service/jobs/load-new-guix-revision.scm | 23 +++++++++++++++++------
1 file changed, 17 insertions(+), 6 deletions(-)
diff --git a/guix-data-service/jobs/load-new-guix-revision.scm
b/guix-data-service/jobs/load-new-guix-revision.scm
index 3db3b9f..f4968de 100644
--- a/guix-data-service/jobs/load-new-guix-revision.scm
+++ b/guix-data-service/jobs/load-new-guix-revision.scm
@@ -614,12 +614,6 @@
'(define unsupported-cross-compilation-target-error? (const #f))
inf))
- (format (current-error-port)
- "heap size: ~a MiB~%"
- (round
- (/ (assoc-ref (gc-stats) 'heap-size)
- (expt 2. 20))))
-
(catch
'match-error
(lambda ()
@@ -2588,6 +2582,23 @@ SKIP LOCKED")
(exec-query conn "BEGIN")
+ (spawn-fiber
+ (lambda ()
+ (while #t
+ (sleep 30)
+
+ (let ((stats (gc-stats)))
+ (simple-format
+ (current-error-port)
+ "process-job heap: ~a MiB used (~a MiB heap)~%"
+ (round
+ (/ (- (assoc-ref stats 'heap-size)
+ (assoc-ref stats 'heap-free-size))
+ (expt 2. 20)))
+ (round
+ (/ (assoc-ref stats 'heap-size)
+ (expt 2. 20))))))))
+
(match (select-job-for-update conn id)
(((id commit source git-repository-id))
- branch master updated (46b8676 -> d310632), Christopher Baines, 2024/11/04
- 01/20: Use a dedicated fiber for heap size monitoring,
Christopher Baines <=
- 03/20: Fix extract-information-from message, Christopher Baines, 2024/11/04
- 02/20: Increase parallelism when loading revisions, Christopher Baines, 2024/11/04
- 10/20: Add a comment, Christopher Baines, 2024/11/04
- 08/20: Use a common derivation-ids-hash-table, Christopher Baines, 2024/11/04
- 04/20: Add fibers-promise-reset, Christopher Baines, 2024/11/04
- 05/20: Ensure the guix derivations are stored prior to attempting to substitute, Christopher Baines, 2024/11/04
- 12/20: Add new fibers utilities, Christopher Baines, 2024/11/04
- 14/20: Ensure that call-with-resource-from-pool doesn't get stuck, Christopher Baines, 2024/11/04
- 07/20: Add placeholder derivation source file nar procedures, Christopher Baines, 2024/11/04
- 15/20: Tweak the resource pool return behaviour, Christopher Baines, 2024/11/04