all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: ludo@gnu.org (Ludovic Courtès)
To: Mark H Weaver <mhw@netris.org>
Cc: guix-devel@gnu.org
Subject: Re: Hydra doesn't have enough memory+swap to evaluate jobsets
Date: Tue, 16 Dec 2014 17:53:42 +0100	[thread overview]
Message-ID: <87mw6n8rjd.fsf@gnu.org> (raw)
In-Reply-To: <87zjao2jgo.fsf@yeeloong.lan> (Mark H. Weaver's message of "Tue, 16 Dec 2014 01:32:23 -0500")

(This is the continuation of a thread about the memory requirements of
job evaluation on Hydra.)

Here’s a run in conditions similar to those of Hydra:

--8<---------------cut here---------------start------------->8---
$ \time -v guile -l build-aux/hydra/gnu-system.scm -c '(use-modules (guix)) (with-store store (hydra-jobs store (list)))'
prepending "build-aux/hydra/../.." to the load path
;;; note: source file build-aux/hydra/../../guix/config.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/guix/config.go
;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0
;;;       or pass the --no-auto-compile argument to disable.
;;; compiling build-aux/hydra/../../guix/config.scm
;;; compiled /home/ludo/.cache/guile/ccache/2.0-LE-8-2.0/home/ludo/src/guix/guix/config.scm.go
;;; note: source file build-aux/hydra/../../guix/store.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/guix/store.go
;;; compiling build-aux/hydra/../../guix/store.scm
;;; note: source file build-aux/hydra/../../guix/utils.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/guix/utils.go
;;; compiling build-aux/hydra/../../guix/utils.scm

[...]

;;; compiling build-aux/hydra/../../gnu/packages/wdiff.scm
;;; compiled /home/ludo/.cache/guile/ccache/2.0-LE-8-2.0/home/ludo/src/guix/gnu/packages/wdiff.scm.go
;;; compiling build-aux/hydra/../../gnu/packages/gps.scm
;;; compiled /home/ludo/.cache/guile/ccache/2.0-LE-8-2.0/home/ludo/src/guix/gnu/packages/gps.scm.go
	Command being timed: "guile -l build-aux/hydra/gnu-system.scm -c (use-modules (guix)) (with-store store (hydra-jobs store (list)))"
	User time (seconds): 90.48
	System time (seconds): 0.30
	Percent of CPU this job got: 103%
	Elapsed (wall clock) time (h:mm:ss or m:ss): 1:27.40
	Average shared text size (kbytes): 0
	Average unshared data size (kbytes): 0
	Average stack size (kbytes): 0
	Average total size (kbytes): 0
	Maximum resident set size (kbytes): 777056
	Average resident set size (kbytes): 0
	Major (requiring I/O) page faults: 3
	Minor (reclaiming a frame) page faults: 18296
	Voluntary context switches: 7426
	Involuntary context switches: 26029
	Swaps: 0
	File system inputs: 7392
	File system outputs: 11936
	Socket messages sent: 0
	Socket messages received: 0
	Signals delivered: 0
	Page size (bytes): 4096
	Exit status: 0
--8<---------------cut here---------------end--------------->8---

So there’s a peak at 758 MiB, which is arguably too much, but far from
5 GiB.

Each evaluation forces a complete recompilation.  However this is
apparently not what takes the most memory:

--8<---------------cut here---------------start------------->8---
$ \time -v ./pre-inst-env guile -l build-aux/hydra/gnu-system.scm -c '(use-modules (guix)) (with-store store (hydra-jobs store (list)))'
;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0
;;;       or pass the --no-auto-compile argument to disable.
;;; compiling /home/ludo/src/guix/build-aux/hydra/gnu-system.scm
prepending "build-aux/hydra/../.." to the load path
;;; compiled /home/ludo/.cache/guile/ccache/2.0-LE-8-2.0/home/ludo/src/guix/build-aux/hydra/gnu-system.scm.go
prepending "build-aux/hydra/../.." to the load path
	Command being timed: "./pre-inst-env guile -l build-aux/hydra/gnu-system.scm -c (use-modules (guix)) (with-store store (hydra-jobs store (list)))"
	User time (seconds): 45.26
	System time (seconds): 0.14
	Percent of CPU this job got: 104%
	Elapsed (wall clock) time (h:mm:ss or m:ss): 0:43.48
	Average shared text size (kbytes): 0
	Average unshared data size (kbytes): 0
	Average stack size (kbytes): 0
	Average total size (kbytes): 0
	Maximum resident set size (kbytes): 798912
--8<---------------cut here---------------end--------------->8---

The latter is faster, but uses about as much memory as the
auto-compilation variant.

For reference, loading all the package modules takes around 180 MiB:

--8<---------------cut here---------------start------------->8---
$ \time -v guix build foobarbaz
guix build: error: foobarbaz: unknown package
Command exited with non-zero status 1
	Command being timed: "guix build foobarbaz"
	User time (seconds): 0.31
	System time (seconds): 0.03
	Percent of CPU this job got: 64%
	Elapsed (wall clock) time (h:mm:ss or m:ss): 0:00.53
	Average shared text size (kbytes): 0
	Average unshared data size (kbytes): 0
	Average stack size (kbytes): 0
	Average total size (kbytes): 0
	Maximum resident set size (kbytes): 181376
--8<---------------cut here---------------end--------------->8---

Anyway, we need to do actual heap profiling now.  :-)

Ludo’.

           reply	other threads:[~2014-12-16 16:54 UTC|newest]

Thread overview: expand[flat|nested]  mbox.gz  Atom feed
 [parent not found: <87zjao2jgo.fsf@yeeloong.lan>]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87mw6n8rjd.fsf@gnu.org \
    --to=ludo@gnu.org \
    --cc=guix-devel@gnu.org \
    --cc=mhw@netris.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.