public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
* Excessive memory usage by associative arrays
@ 2015-01-19 16:58 Sergey Klyaus
  2015-01-19 20:08 ` Frank Ch. Eigler
  0 siblings, 1 reply; 4+ messages in thread
From: Sergey Klyaus @ 2015-01-19 16:58 UTC (permalink / raw)
  To: systemtap

Hello!

OS: CentOS 7.0 with stock kernel
SystemTap: 2.4

I created script that contains plenty of associative arrays and
statistics. OOM Killer kills stapio even before module is initialized.
I've added debug print to a _stp_map_new and noticed that it
allocation is really huge:

- By default MAXMAPENTRIES is 2048
- Each string is stored statically and MAP_STRING_LENGTH is 256 (i
have 2 keys so its 256)
- Plus statistics data gives us 1088 bytes per entry
- SystemTap initializes map on per-cpu basis and do it with
for_each_possible_cpu() (128 in my case)

So this simple script:
stap -e ' global a;
     probe timer.s(1) {
             a["aaaa", "bbbb"] <<< 1;
     }
     probe timer.s(60) {
             println(@count(a["aaaa", "bbbb"]));
     }'
would eat about 300 Mb of memory.

Of course, I may reduce MAXMAPENTRIES, but I think there is something
wrong with such greedy allocation...
For the record, similiar DTrace script works perfectly (after I
removed leak of records :) ).

Thanks in advance.
BR, Sergey.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-01-20  9:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-19 16:58 Excessive memory usage by associative arrays Sergey Klyaus
2015-01-19 20:08 ` Frank Ch. Eigler
2015-01-19 20:28   ` Josh Stone
2015-01-20  9:58     ` Sergey Klyaus

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