Unicorn has OobGC rack middleware that can be used to run GC.start after a certain number of requests.

Is there a similar sort of thing in Phusion Passenger?

link|improve this question
If you have a memory leak why not deal with it head on? – Devin M Jun 3 '11 at 1:57
It isn't actually a memory leak, it's just that sometimes I have to use a lot of memory. I would rather take the hit of the GC outside of the request/response cycle. – eric Jun 3 '11 at 3:26
feedback

3 Answers

up vote 3 down vote accepted

Hooking into PhusionPassenger::Rack::RequestHandler#process_request() is the only mechanism I have found.

To do this in a similar way to the Unicorn OobGC, you can use the following module:

module PassengerOobGC
  def self.install!(path, interval = 5)
    self.const_set :OOBGC_PATH,     path
    self.const_set :OOBGC_INTERVAL, interval
    @@oob_nr = interval
    PhusionPassenger::Rack::RequestHandler.send :include, self
  end

  def self.included(base)
    base.send :alias_method_chain, :process_request, :gc
  end

  def process_request_with_gc(env, *args)
    process_request_without_gc(env, *args)

    if OOBGC_PATH =~ env["PATH_INFO"] && ((@@oob_nr -= 1) <= 0)
      @@oob_nr = OOBGC_INTERVAL
      GC.start
    end
  end
end

and invoke it in an initializer with:

if defined?(PhusionPassenger::Rack::RequestHandler)
  require 'passenger_oob_gc'
  PassengerOobGC.install!(%r{^/admin/}, 3)
end
link|improve this answer
feedback

You have to patch Passenger. Doing a GC.start after each request has been handed off ensures that garbage collection never occurs while holding a client request. This is a one-line change that you might consider if you're trying to reduce your average request time.

link|improve this answer
Do you have a link to the change you're referring to? – eric Sep 9 '11 at 5:40
feedback

Does this garbage collector documentation from Passenger help you? http://www.rubyenterpriseedition.com/documentation.html#_garbage_collector_performance_tuning You can tune the parameters qute a bit.

link|improve this answer
No — I am already tuning the GC. Now I want to remove the random nature of when a GC happens and ensure it happens between requests. – eric Jun 4 '11 at 4:17
Call GC start after your request cycle? You could hack it into your own app or write some middleware. – Devin M Jun 4 '11 at 4:27
Yes, that is what I'm wanting to do (similar to the link in the question: rubyforge.org/pipermail/mongrel-unicorn/2010-May/000510.html ). – eric Jun 4 '11 at 4:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.