From: orbitz@ezabel.com
To: "Richard W.M. Jones" <rich@annexia.org>
Cc: david.baelde@ens-lyon.org, Caml List <caml-list@inria.fr>
Subject: Re: [Caml-list] Understanding usage by the runtime
Date: Sat, 7 Jan 2012 00:43:22 -0500 [thread overview]
Message-ID: <012932EC-860F-4A40-98D1-E4B6EC123927@ezabel.com> (raw)
In-Reply-To: <20120101124454.GA12851@annexia.org>
Hello everyone!
I would like to reassure you that all is right in the world. After a large number of tests I finally tracked the problem down to an entry in a Hashtbl not being deleted. It was a one line fix!
One question does remain though: In my tests I would do some work that would cause ~1GB of RAM to be under control of the Gc. Then I would do something that, at the time I didn't understand, would case the Gc to compact all of its memory and go back down to less than 1 meg, but the RES value in top would only drop to about 400 megs. Is this expected behavior? I know the malloc implementation might hold on to some data for itself but 400x the amount of memory the Ocaml RTS actually needs seems a bit excessive. I know there is a bug report floating around from Martin about large Arrays not being properly freed, in this case my issue was with a Hashtbl. I do not know if Hashtbl is implemented with an Array underneath, but could that be the cause of my overhead if so?
Thank you
On Jan 1, 2012, at 7:44 AM, Richard W.M. Jones wrote:
> On Sat, Dec 31, 2011 at 10:33:19AM -0500, orbitz@ezabel.com wrote:
>> Being on the C side is not even something I had considered. In this
>> case, I think the only piece of code not part of the Ocaml RTS that is
>> talking to C is Lwt. It is possible that there is a memory leak in
>> there somewhere. The upside, though, is there seems to be some
>> residue of it in the Ocaml side. My heap numbers given earlier are
>> ~65megs which is significantly larger than it should be, so I might be
>> able to track it down from the Ocaml side.
>
> A couple of other ideas:
>
> Is compaction disabled? lablgtk disables it unconditionally by
> setting the global Gc max_overhead (see also the Gc documentation):
>
> src/gtkMain.ml:
> let () = Gc.set {(Gc.get()) with Gc.max_overhead = 1000000}
>
> If something in your program or Lwt does the same, you may get
> fragmentation of the C malloc heap or perhaps the OCaml heap. I've
> experienced fragmentation in very long-running C programs and it's
> insidious because it's very hard to understand what's really going on,
> and impossible IME to remedy it.
>
> Second suggestion is to look at /proc/<pid>/maps and/or smaps.
> That'll tell you without doubt where the 2GB of memory is being used.
> Most likely in the heap from the way you describe it, but it is worth
> checking that top isn't reporting something innocuous such as a big
> file-backed mmap in one of your C libraries.
>
> Attached is a script that you can adapt to help you interpret
> /proc/<pid>/maps.
>
> Rich.
>
> --
> Richard Jones
> Red Hat
> <maps.pl>
next prev parent reply other threads:[~2012-01-07 5:43 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-30 23:45 orbitz
2011-12-31 9:11 ` David Baelde
2011-12-31 15:33 ` orbitz
2012-01-01 12:44 ` Richard W.M. Jones
2012-01-04 18:03 ` Damien Doligez
2012-01-04 18:48 ` Adrien
2012-01-04 19:37 ` John Carr
2012-01-07 5:43 ` orbitz [this message]
2012-01-08 18:45 ` Richard W.M. Jones
2012-01-08 19:00 ` Richard W.M. Jones
2012-01-08 22:33 ` Török Edwin
2012-01-09 14:31 ` Richard W.M. Jones
2012-01-09 21:07 ` Richard W.M. Jones
2012-01-08 22:50 ` orbitz
2012-01-08 23:02 ` Richard W.M. Jones
2012-01-08 23:26 ` orbitz
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=012932EC-860F-4A40-98D1-E4B6EC123927@ezabel.com \
--to=orbitz@ezabel.com \
--cc=caml-list@inria.fr \
--cc=david.baelde@ens-lyon.org \
--cc=rich@annexia.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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox