guix-commits
[Top][All Lists]
Advanced

[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))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]