Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I've been playing around with sending large files from Rails and ended up setting up this conf for the nginx (showing relevant parts):

server {
  listen 80;
  server_name myapp.ru *.myapp.ru;
  root /var/www/myapp/production/current/public;
  passenger_enabled on;
  rails_env production;

  proxy_set_header  X-Sendfile-Type   X-Accel-Redirect;
  proxy_set_header  X-Accel-Mapping   /var/www/myapp/production/shared/data/store_files/=/store_files/;
  passenger_set_cgi_param HTTP_X_ACCEL_MAPPING /var/www/myapp/production/shared/data/store_files/=/store_files/;
  passenger_pass_header X-Accel-Redirect;

  location /store_files/ {
    internal;  
    alias /var/www/myapp/production/shared/data/store_files/;
  }


}

I also enabled X-Accel-Redirect in Rails config. When I serve a file with #send_file from my controller:

def download
  @purchase.increment!(:times_downloaded)
  send_file "/var/www/myapp/production/shared/data/store_files/#{@purchase.store_item.file}", disposition: "inline"
end

everything indeed works as expected, the file is downloaded just fine. However the memory still leaks. I check with 'free' how much I have left and it keeps shrinking while the file is being downloaded, until I get 5 or so Mb left.

I can also tell that the file is probably sent by nginx directly (meaning everything works as expected), because before that, when the file was sent with Rails, Google Chrome couldn't determine the size of the file being downloaded - now it can.

The only problem is, like I said, shrinking memory. Is this supposed to be this way?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.