0

I am migrating my existing rails app to heroku. I have memory and time intensive delayed jobs that run almost 20 hours a day and I have a clockwork to handle the time specific jobs. the clockwork jobs are not so heavy and run a very few times in one day.

Is is possible to run both the delayed job process and the clockwork process using a single heroku process using bluepill ?

I do not want to pay for one more worker just for the sake of clockwork processes.

nightf0x
  • 1,969
  • 3
  • 17
  • 24

1 Answers1

0

Try using heroku scheduler, it will allow you to schedule jobs on a daily, hourly or 10 minute interval.

CraigKerstiens
  • 5,906
  • 1
  • 25
  • 28