haskell - 优化 Haskell GC 使用

标签 haskell memory-management garbage-collection profiling

我正在运行一个长期存在的 Haskell 程序,它占用大量内存。使用 +RTS -N5 -s -A25M 运行(我的 L3 缓存的大小)我看到:

715,584,711,208 bytes allocated in the heap
390,936,909,408 bytes copied during GC
  4,731,021,848 bytes maximum residency (745 sample(s))
     76,081,048 bytes maximum slop
           7146 MB total memory in use (0 MB lost due to fragmentation)

                                  Tot time (elapsed)  Avg pause  Max pause
Gen  0     24103 colls, 24103 par   240.99s   104.44s     0.0043s    0.0603s
Gen  1       745 colls,   744 par   2820.18s   619.27s     0.8312s    1.3200s

Parallel GC work balance: 50.36% (serial 0%, perfect 100%)

TASKS: 18 (1 bound, 17 peak workers (17 total), using -N5)

SPARKS: 1295 (1274 converted, 0 overflowed, 0 dud, 0 GC'd, 21 fizzled)

INIT    time    0.00s  (  0.00s elapsed)
MUT     time  475.11s  (454.19s elapsed)
GC      time  3061.18s  (723.71s elapsed)
EXIT    time    0.27s  (  0.50s elapsed)
Total   time  3536.57s  (1178.41s elapsed)

Alloc rate    1,506,148,218 bytes per MUT second

Productivity  13.4% of total user, 40.3% of total elapsed

GC时间占总运行时间的87%!我在具有大量 RAM 的系统上运行此程序,但是当我设置较高的 -H 值时,性能会更差。

似乎-H-A都控制gen 0的大小,但我真正想做的是增加gen 1 的大小。最好的方法是什么?

最佳答案

正如 Carl 建议的那样,您应该检查代码是否存在空间泄漏。我假设您的程序确实需要大量内存,这是有充分理由的。

该程序花费了 2820.18 秒进行主要 GC。您可以通过减少内存使用量(不是假设的情况)或主要集合的数量来降低它。您有大量可用 RAM,因此您可以尝试 -Ffactor option :

 -Ffactor

    [Default: 2] This option controls the amount of memory reserved for
 the older generations (and in the case of a two space collector the size
 of the allocation area) as a factor of the amount of live data. For
 example, if there was 2M of live data in the oldest generation when we
 last collected it, then by default we'll wait until it grows to 4M before
 collecting it again.

在您的情况下,有大约 3G 的实时数据。默认情况下,当堆增长到6G时,将触发major GC。使用-F3,当堆增长到 9G 时,它将被触发,从而节省大约 1000 秒的 CPU 时间。

如果大部分实时数据是静态的(例如从不改变或改变缓慢),那么您会对 stable heap 感兴趣。 。这个想法是从主要 GC 中排除长期存在的数据。它可以实现,例如使用compact normal forms ,尽管它是 not merged尚未进入 GHC。

关于haskell - 优化 Haskell GC 使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28011067/

相关文章:

c++ - 从windbg堆输出垃圾摘要

Java内存映射大文件

memory-leaks - Lua 中是否收集了数字、 bool 值或 nils 垃圾?

haskell - 使用列表理解查找列表中的单个元素

haskell - 有 Liquid Haskell 启用的 Prelude 吗?

c++ - 访问 C++ 程序的代码段

java - "garbage collection rate"是什么意思,它能提供什么好处?

c# - 存储库上的 Ninject WCF 垃圾收集

haskell - 将 do 表示法重构为应用风格

haskell - Quickcheck:生成一个由给定池中的字符组成的字符串