I have an app hosted @ Heroku. The app depends on some feeds which are fetched using a socket listener. The socket listener gets one line of XML per second. Once I detect the end of file signal from the listener, I upload the file to Amazon S3 servers. But, until the end of file signal is received, is it possible to save the file content as a temporary file in Heroku?
Share
You may be able to use the
#{RAILS_ROOT}/tmp/directory orRails.root.join('tmp').to_s:RAILS_ROOTis for older Rails versions,Rails.rootis for newer versions.You can’t depend on anything surviving across requests of course, there’s no guarantee that you’ll even be working with the same dyno.
As long as you stay within the same process or request,
Rails.root.join('tmp')should be usable. If you need the temporary data to survive across requests or processes then you’re better off using something else (such as MongoDB or PostgreSQL) as a collecting ground for your data on its way to S3.Thanks to Benjamin Wheeler for the heads up about the
RAILS_ROOTtoRails.rootchange.