unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: "Ludovic Courtès" <ludo@gnu.org>
To: Edouard Klein <edou@rdklein.fr>
Cc: guix-devel <guix-devel@gnu.org>
Subject: Re: guix --container is RAM hungry
Date: Fri, 29 Mar 2024 00:30:57 +0100	[thread overview]
Message-ID: <871q7uj5n2.fsf@gnu.org> (raw)
In-Reply-To: <87v85fp8bj.fsf@rdklein.fr> (Edouard Klein's message of "Thu, 21 Mar 2024 22:44:41 +0100")

Hi Edouard,

Edouard Klein <edou@rdklein.fr> skribis:

> I'm a huge fan of guix --container, and I created a system to use those
> by default for network services. But the VPS these services run on has
> only 2GB of RAM, and I just realized that a container, by default,
> requires at least 200MB.

Ouch, confirmed:

--8<---------------cut here---------------start------------->8---
$ \time -v guix shell -C coreutils -- uname 2>&1 |grep 'Maximum resident'
        Maximum resident set size (kbytes): 283048
$ \time -v guix shell coreutils -- uname 2>&1 |grep 'Maximum resident'
        Maximum resident set size (kbytes): 56588
$ guix describe
Generation 297  Mar 24 2024 23:12:25    (current)
  guix 28bc0e8
    repository URL: https://git.savannah.gnu.org/git/guix.git
    branch: master
    commit: 28bc0e870b4d48b8e3e773382bb0e999df2e3611
--8<---------------cut here---------------end--------------->8---

As raingloom and Ricardo wrote, there’s a Guile process that keeps
waiting.

The ‘-C’ variant has to load more modules and do more work (compute
derivations), so it’s not surprising that it takes more memory than the
other variant (on a cache hit it has nothing to do).

Merely loading (guix scripts shell) consumes a lot, but GC says it’s
“only” using 7 MiB out of this:

--8<---------------cut here---------------start------------->8---
$ \time -f %M guile  -c '(use-modules (guix scripts shell)) (pk (quotient (assoc-ref (gc-stats) (quote heap-size)) 1024))'

;;; (7204)
38272
--8<---------------cut here---------------end--------------->8---

So what we’re seeing here is probably the mappings made by the loader
(libguile/loader.c).

Needs more investigation…

Ludo’.


  parent reply	other threads:[~2024-03-28 23:31 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-21 21:44 guix --container is RAM hungry Edouard Klein
2024-03-25  9:27 ` raingloom
2024-03-26 20:37   ` Ricardo Wurmus
2024-03-28 23:30 ` Ludovic Courtès [this message]
2024-03-30  2:33   ` Maxim Cournoyer
2024-04-02 20:33     ` Edouard Klein
2024-04-10 14:02       ` Ludovic Courtès

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=871q7uj5n2.fsf@gnu.org \
    --to=ludo@gnu.org \
    --cc=edou@rdklein.fr \
    --cc=guix-devel@gnu.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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).