Ruby on Rails Friday, December 7, 2012







I am using active record find_in_batches() on jruby 1.6.8 (which is ruby 1.8.6 I believe). I just do this:



    self.find_in_batches(attr) {|recs|
      recs.each { |rec| rec.destroy }}

This leaks memory, however some memory looks like it is freed up each time but the memory usage gradually increases, This is a very large set of records. Is it possible that the garbage collector does not have enough time to run ? I tried adding a System.gc() call followed by sleep(2) every now and then, but overall the memory still goes up. Any ideas, suggestions or insights ? thanks 



--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/jRkt5UFT57QJ.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

No comments:

Post a Comment