On Nov 5, 2010, at 1:59 PM, Phil Pirozhkov wrote: >> And I was also wondering, if I get te delayed_job is working will >> users still get timeouts on Heroku if it simply takes more than 30 >> seconds to upload the image from their local machine to Heroku (before >> image processing)?
We ran into this limit. Not only do you have the time it takes to upload the image to heroku, but also the time to offload it from heroku to s3. And yes, it will timeout after 30 seconds, which rules out larger uploads or slow connections. We ended use swfupload to upload the file direct to s3 and on completion enqueue a job to fetch and process it with paperclip. TJ Singleton http://www.salescrunch.com -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/heroku?hl=en.
