matthewrkula / nextslide

NextSlide online powerpoint viewer.
nextslide.herokuapp.com
1 stars 0 forks source link

background jobs for uploading #20

Open val-litvak opened 10 years ago

val-litvak commented 10 years ago

we will probably want to have background jobs when uploading, to improve performance, but that is for later on, we would need this more if people start uploading a lot. each slideshow upload will also upload each slide image. (right now this is not happening, because we are making a call to the google file viewer for images, which is slow)

val-litvak commented 10 years ago

also, in order for this to happen, we should probably move to something other than heroku, because heroku would be expensive, ($35 per instance), if we want background jobs at some point.

shabbirv commented 10 years ago

You can use a cronjob for this. Every minute check for any jobs and then complete them. That's free! 

— Shabbir Vijapura http://shabz.co

On Sat, Oct 12, 2013 at 9:21 AM, Val notifications@github.com wrote:

also, in order for this to happen, we should probably move to something other than heroku, because heroku would be expensive, ($35 per instance), if we want background jobs at some point.

Reply to this email directly or view it on GitHub: https://github.com/matthewrkula/nextslide/issues/20#issuecomment-26198285

val-litvak commented 10 years ago

agreed, but it can't be done directly on heroku though :/, if we want to utilize cron jobs of any sort we would need to move to ec2, or some other web host, i was also considering linode(VPS), but i dont know.

shabbirv commented 10 years ago

Aren't those all pretty expensive?

— Shabbir Vijapura http://shabz.co

On Sat, Oct 12, 2013 at 9:37 AM, Val notifications@github.com wrote:

agreed, but it can't be done directly on heroku though :/, if we want to utilize cron jobs of any sort we would need to move to ec2, or some other web host, i was also considering linode(VPS), but i dont know.

Reply to this email directly or view it on GitHub: https://github.com/matthewrkula/nextslide/issues/20#issuecomment-26198593

val-litvak commented 10 years ago

yeah they are, ec2 is based on usage http://aws.amazon.com/ec2/pricing/ (do you guys have the free tier thing by any chance? we could utilize that for a while) linode is 20 bucks a month per instance, (i imagine we would not need more than one for a while)

would you happen to know any cheaper alternatives?

val-litvak commented 10 years ago

https://manager.linode.com/signup

scroll to the bottom of the form to see plans, they seem more reasonable than ec2 i think,

I've deployed to linode before too.