ruby/ruby on rails memory leak detection - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T18:11:35Z http://stackoverflow.com/feeds/question/161315 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/161315/ruby-ruby-on-rails-memory-leak-detection 5 ruby/ruby on rails memory leak detection Josh Moore 2008-10-02T08:15:27Z 2009-07-12T14:30:25Z <p>I wrote a small web app using ruby on rails, its main purpose is to upload, store, and display results from xml(files can be up to several MB) files. After running for about 2 months I noticed that the mongrel process was using about 4GB of memory. I did some research on debugging ruby memory leaks and could not find much. So I have two questions.</p> <ul> <li>Are there any good tools that can be used to find memory leaks in Ruby/rails?</li> <li>What type of coding patterns cause memory leaks in ruby?</li> </ul> http://stackoverflow.com/questions/161315/ruby-ruby-on-rails-memory-leak-detection/161690#161690 1 Answer by Jean for ruby/ruby on rails memory leak detection Jean 2008-10-02T10:35:02Z 2008-10-02T10:35:02Z <p>Memory leak is a problem in the current ruby implementation a good place to start about this is <a href="http://whytheluckystiff.net/articles/theFullyUpturnedBin.html" rel="nofollow">http://whytheluckystiff.net/articles/theFullyUpturnedBin.html</a></p> <p>for a more specific answer on problems with long running ruby processes see <a href="http://zdavatz.wordpress.com/2007/07/18/heap-fragmentation-in-a-long-running-ruby-process/" rel="nofollow">http://zdavatz.wordpress.com/2007/07/18/heap-fragmentation-in-a-long-running-ruby-process/</a></p> <p>maybe you could give passenger (mod_rails) a try <a href="http://nubyonrails.com/articles/ask-your-doctor-about-mod_rails" rel="nofollow">http://nubyonrails.com/articles/ask-your-doctor-about-mod_rails</a></p> http://stackoverflow.com/questions/161315/ruby-ruby-on-rails-memory-leak-detection/161886#161886 6 Answer by Dave Nolan for ruby/ruby on rails memory leak detection Dave Nolan 2008-10-02T11:53:53Z 2009-07-12T14:30:25Z <p>Some tips to find memory leaks in Rails:</p> <ul> <li>use the <a href="http://www.rubyinside.com/bleakhouse-tool-to-find-memory-leaks-in-your-rails-applications-470.html" rel="nofollow">Bleak House</a> plugin</li> <li>implement <a href="http://scoutapp.com" rel="nofollow">Scout monitoring</a> specifically the memory usage profiler</li> <li>implement <a href="http://fiveruns.com" rel="nofollow">FiveRuns monitoring</a></li> <li>try another <a href="http://github.com/binarylogic/memorylogic/tree/master" rel="nofollow">simple memory usage logger</a></li> </ul> <p>The first is a graphical exploration of memory usage by objects in the ObjectSpace.</p> <p>The last two will help you identify specific usage patterns that are inflating memory usage, and you can work from there.</p> <p>As for specific coding-patterns, from experience you have to watch anything that's dealing with file io, image processing, working with massive strings and the like.</p> <p>I would check whether you are using the most appropriate XML library - ReXML is known to be slow and believed to be leaky (I have no proof of that!). Also check whether you can <a href="http://unintelligible.org/blog/2007/08/16/one-line-ruby-memoization/" rel="nofollow">memoize</a> expensive operations.</p> http://stackoverflow.com/questions/161315/ruby-ruby-on-rails-memory-leak-detection/164206#164206 0 Answer by Daniel Beardsley for ruby/ruby on rails memory leak detection Daniel Beardsley 2008-10-02T19:46:52Z 2008-10-02T19:46:52Z <p>A super simple method to log memory usage after or before each request (only for Linux).</p> <pre><code>#Put this in applictation_controller.rb before_filter :log_ram # or use after_filter def log_ram logger.warn 'RAM USAGE: ' + `pmap #{Process.pid} | tail -1`[10,40].strip end </code></pre> <p>You might want to load up script/console and try the statement out first to make sure it works on your box.</p> <pre><code>puts 'RAM USAGE: ' + `pmap #{Process.pid} | tail -1`[10,40].strip </code></pre> <p>Then just monitor top, when a request makes your memory usage jump, go check the logs. This, of course, will only help if you have a memory leak that occurs in large jumps, not tiny increments.</p> http://stackoverflow.com/questions/161315/ruby-ruby-on-rails-memory-leak-detection/191910#191910 0 Answer by kohlerm for ruby/ruby on rails memory leak detection kohlerm 2008-10-10T15:35:45Z 2008-10-10T15:35:45Z <p>Switch to jruby and use the <a href="http://www.eclipse.org/mat" rel="nofollow">Eclipse Memory Analyzer</a>. There's no comparable tool for Ruby at the moment. </p>