Using delayed_job to process file uploads across multiple servers
Posted
by Steve Klabnik
on Stack Overflow
See other posts from Stack Overflow
or by Steve Klabnik
Published on 2010-03-25T20:40:15Z
Indexed on
2010/03/25
20:43 UTC
Read the original article
Hit count: 264
Does anyone have any good resources on how to do this?
Basically, I'm working on a project (in Rails) where people can upload files. They might be big. I'd like to process them using delayed_job before sending them to S3. I'd also like to do this processing on a separate job queue server, rather than on the webserver itself. I'd rather not have to upload the files to the webserver, then transfer them to the job queue server, and then upload them to S3 if I don't have to.
Thanks.
© Stack Overflow or respective owner