<div dir="ltr"><div>Try Greg's recommendations first.  If you still need to do more investigation, <span style="line-height:1.5">I'd recommend that you look at some samples with either threadscope or dumping the eventlog to text.  I really like ghc-events-analyze, but it doesn't provide quite the same level of detail.  You may also want to dump some of your metrics into the eventlog, because then you'll be able to see exactly how high latency episodes line up with GC pauses.</span></div></div><br><div class="gmail_quote"><div dir="ltr">On Mon, Sep 28, 2015 at 1:02 PM Gregory Collins <<a href="mailto:greg@gregorycollins.net">greg@gregorycollins.net</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Sep 28, 2015 at 9:08 AM, Will Sewell <span dir="ltr"><<a href="mailto:me@willsewell.com" target="_blank">me@willsewell.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">If it is the GC, then is there anything that can be done about it?</blockquote></div></div></div><div dir="ltr"><div class="gmail_extra"><ul><li>Increase value of -A (the default is too small) -- best value for this is L3 cache size of the chip</li><li>Increase value of -H (total heap size) -- this will use more ram but you'll run GC less often</li><li>This will sound flip, but: generate less garbage. Frequency of GC runs is proportional to the amount of garbage being produced, so if you can lower mutator allocation rate then you will also increase net productivity. Built-up thunks can transparently hide a lot of allocation so fire up the profiler and tighten those up (there's an 80-20 rule here). Reuse output buffers if you aren't already, etc.<br></li></ul></div></div><div dir="ltr"><div class="gmail_extra">G<br clear="all"><div><br></div>-- <br><div>Gregory Collins <<a href="mailto:greg@gregorycollins.net" target="_blank">greg@gregorycollins.net</a>></div>
</div></div>
_______________________________________________<br>
Glasgow-haskell-users mailing list<br>
<a href="mailto:Glasgow-haskell-users@haskell.org" target="_blank">Glasgow-haskell-users@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/glasgow-haskell-users" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/glasgow-haskell-users</a><br>
</blockquote></div>