diff options
author | Christopher Baines <mail@cbaines.net> | 2019-03-16 17:26:44 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-03-16 17:26:44 +0000 |
commit | a092db5007d7e1d0335099a3c422ac707ad05c56 (patch) | |
tree | ce745414d49c1311593fd65afd49367d360980cb /guix-data-service | |
parent | 9f162c3b2c9b21c1111c6cff972990b947b51955 (diff) | |
download | data-service-a092db5007d7e1d0335099a3c422ac707ad05c56.tar data-service-a092db5007d7e1d0335099a3c422ac707ad05c56.tar.gz |
Further improve load-new-guix-revision-jobs
Split the derivations up in to some groups, and run
invalidate-derivation-caches! inbetween to try and reduce the memory
usage.
Also make a couple of other changes to reduce memory usage or protect
against errors.
Diffstat (limited to 'guix-data-service')
-rw-r--r-- | guix-data-service/jobs.scm | 10 | ||||
-rw-r--r-- | guix-data-service/jobs/load-new-guix-revision.scm | 148 |
2 files changed, 103 insertions, 55 deletions
diff --git a/guix-data-service/jobs.scm b/guix-data-service/jobs.scm index 0d5c266..93b337b 100644 --- a/guix-data-service/jobs.scm +++ b/guix-data-service/jobs.scm @@ -4,8 +4,8 @@ #:export (process-jobs)) (define (process-jobs conn) - (match (process-next-load-new-guix-revision-job conn) - (#f (begin (simple-format #t "Waiting for new jobs...") - (sleep 60) - (process-jobs conn))) - (_ (process-jobs conn)))) + (while #t + (match (process-next-load-new-guix-revision-job conn) + (#f (begin (simple-format #t "Waiting for new jobs...") + (sleep 60))) + (_ #f)))) diff --git a/guix-data-service/jobs/load-new-guix-revision.scm b/guix-data-service/jobs/load-new-guix-revision.scm index 5b5190c..d7af63f 100644 --- a/guix-data-service/jobs/load-new-guix-revision.scm +++ b/guix-data-service/jobs/load-new-guix-revision.scm @@ -37,7 +37,23 @@ result)) (define (all-inferior-package-derivations store inf packages) - (define proc + (define inferior-%supported-systems + (inferior-eval '(@ (guix packages) %supported-systems) inf)) + + (define supported-system-pairs + (map (lambda (system) + (cons system system)) + inferior-%supported-systems)) + + (define supported-system-cross-build-pairs + (map (lambda (system) + (filter-map (lambda (target) + (and (not (string=? system target)) + (cons system target))) + inferior-%supported-systems)) + inferior-%supported-systems)) + + (define (proc packages system-target-pairs) `(lambda (store) (append-map (lambda (inferior-package-id) @@ -66,10 +82,18 @@ target system)))))) (lambda args - ;; misc-error #f ~A ~S (No cross-compilation for clojure-build-system yet: + ;; misc-error #f ~A ~S (No + ;; cross-compilation for + ;; clojure-build-system yet: #f))) - supported-systems)) - supported-systems))) + (lset-intersection + string=? + supported-systems + (list ,@(map cdr system-target-pairs))))) + (lset-intersection + string=? + supported-systems + (list ,@(map car system-target-pairs)))))) (lambda args (simple-format (current-error-port) "error: while processing ~A ignoring error: ~A\n" @@ -78,7 +102,20 @@ '())))) (list ,@(map inferior-package-id packages))))) - (inferior-eval-with-store inf store proc)) + (append-map + (lambda (system-target-pairs) + (format (current-error-port) + "heap size: ~a MiB~%" + (round + (/ (assoc-ref (gc-stats) 'heap-size) + (expt 2. 20)))) + (log-time + (simple-format #f "getting derivations for ~A" system-target-pairs) + (lambda () + (inferior-eval '(invalidate-derivation-caches!) inf) + (inferior-eval-with-store inf store (proc packages system-target-pairs))))) + (append (map list supported-system-pairs) + supported-system-cross-build-pairs))) (define (inferior-guix->package-derivation-ids store conn inf) (let* ((packages (log-time "fetching inferior packages" @@ -157,52 +194,63 @@ (list (string-append "SSL_CERT_DIR=" (nss-certs-store-path store)))))) - ;; Create /etc/pass, as %known-shorthand-profiles in (guix - ;; profiles) tries to read from this file. Because the environment - ;; is cleaned in build-self.scm, xdg-directory in (guix utils) - ;; falls back to accessing /etc/passwd. - (inferior-eval - '(begin - (mkdir "/etc") - (call-with-output-file "/etc/passwd" - (lambda (port) - (display "root:x:0:0::/root:/bin/bash" port)))) - inferior) - - (let ((channel-instance - (first - (latest-channel-instances store - (list channel))))) - (inferior-eval '(use-modules (guix channels) - (guix profiles)) - inferior) - (inferior-eval '(define channel-instance - (@@ (guix channels) channel-instance)) - inferior) - - (let ((file-name - (inferior-eval-with-store - inferior - store - `(lambda (store) - (let ((instances - (list - (channel-instance - (channel (name ',(channel-name channel)) - (url ,(channel-url channel)) - (branch ,(channel-branch channel)) - (commit ,(channel-commit channel))) - ,(channel-instance-commit channel-instance) - ,(channel-instance-checkout channel-instance))))) - (run-with-store store - (mlet* %store-monad ((manifest (channel-instances->manifest instances)) - (derv (profile-derivation manifest))) - (mbegin %store-monad - (return (derivation-file-name derv)))))))))) + (catch + #t + (lambda () + ;; Create /etc/pass, as %known-shorthand-profiles in (guix + ;; profiles) tries to read from this file. Because the environment + ;; is cleaned in build-self.scm, xdg-directory in (guix utils) + ;; falls back to accessing /etc/passwd. + (inferior-eval + '(begin + (mkdir "/etc") + (call-with-output-file "/etc/passwd" + (lambda (port) + (display "root:x:0:0::/root:/bin/bash" port)))) + inferior) + + (let ((channel-instance + (first + (latest-channel-instances store + (list channel))))) + (inferior-eval '(use-modules (guix channels) + (guix profiles)) + inferior) + (inferior-eval '(define channel-instance + (@@ (guix channels) channel-instance)) + inferior) + + (let ((file-name + (inferior-eval-with-store + inferior + store + `(lambda (store) + (let ((instances + (list + (channel-instance + (channel (name ',(channel-name channel)) + (url ,(channel-url channel)) + (branch ,(channel-branch channel)) + (commit ,(channel-commit channel))) + ,(channel-instance-commit channel-instance) + ,(channel-instance-checkout channel-instance))))) + (run-with-store store + (mlet* %store-monad ((manifest (channel-instances->manifest instances)) + (derv (profile-derivation manifest))) + (mbegin %store-monad + (return (derivation-file-name derv)))))))))) + + (close-inferior inferior) + + file-name))) + (lambda args + (simple-format (current-error-port) + "error: channel->derivation-file-name: ~A\n" + args) (close-inferior inferior) - file-name)))) + #f)))) (define (channel->manifest-store-item store channel) (let* ((manifest-store-item-derivation-file-name @@ -233,7 +281,8 @@ '("/gnu/store")))) (inferior-eval '(use-modules (srfi srfi-1) (srfi srfi-34) - (guix grafts)) + (guix grafts) + (guix derivations)) inf) (inferior-eval '(%graft? #f) inf) @@ -298,4 +347,3 @@ id "'")))) (_ #f)))) - |