Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the Heroku free apps the dynos seem to keep idling - my app has very low traffic but it's also not really acceptable in my case that my users have to wait 20+ seconds to spin up a new dyno.

Frankly, with that kind of wait, many will leave before the first page even displays.

So, I have a problem: should I be paying $36 a month to save each user an embarrassingly long 20 seconds when my traffic is in the single-digits per day.

Is there a way around this??

share|improve this question

7 Answers

up vote 120 down vote accepted

You can install the free New Relic add-on. It has an availability monitor feature that will ping your site twice per minute, thus preventing the dyno from idling.

More or less the same solution as Jesse but maybe more integrated to Heroku... And with a few perks (performance monitoring is just great).

share|improve this answer
I like this approach as well! – Jesse Wolgamott Mar 30 '11 at 13:04
4  
do we have to install gem 'newrelic_rpm' too to prevent the dyno from idling ? – simo Jun 8 '12 at 7:43
2  
How much does this increase the dyno usage by? – Trevoke Oct 2 '12 at 0:00
1  
It makes you use your demo 100% of the time (max 744h / month) but as Heroku gives you 750h for free very month, you shouldn't notice. – Pierre Oct 2 '12 at 5:24
13  
It doesn't seem like this still works. – Sunny Juneja Mar 15 at 17:30
show 5 more comments

You can use http://pingdom.com/ to check your app; if done every minute or so, heroku won't idle your app and won't need to spin-up.

share|improve this answer
2  
So hard to decide between the two answers! In the end I went with Newrelic because I already have an account there. Thanks a lot for this great suggestion - it did actually solve my problem too. :) +1. – sscirrus Mar 30 '11 at 16:28

In my opinion, using the 'free' tier of the service should not be powering a production or customer facing application. While the above solutions work against the Dyno idling, think thoroughly about what you're doing.

If nothing else, use a cron job to ping your site, and disable the check for known low-use periods (ie, overnight) to ensure Heroku doesn't do away with the free tier for everyone else.

share|improve this answer
Thanks for your answer. What do you mean specifically by 'think thoroughly about what you're doing'? – sscirrus Jun 21 '12 at 20:48
7  
Largely for people who read the above answers for this solution. The goal of the free tier on Heroku isn't to host a production app that needs to be available for customers. The free tier idling allows Heroku to offer this level for development / testing, without a large overhead cost of constantly running servers. – drowe Jun 26 '12 at 13:58

As an alternative to Pingdom I suggest trying Uptimerobot. It is free and offers 5 min interval site checking. It works very fine for me.

share|improve this answer
thanks ill try this one out. working so far! – sirvon andre thomas Apr 3 at 12:31
awesome! thank you! – chourobin May 7 at 23:29

It says in Heroku documentation that having more than 1 web dyno will never idle out. Possibly a cheaper solution than $0.09/hour like Pierre suggests.

enter image description here

Documentation

share|improve this answer
3  
The Heroku add-on has a free standard version. – sscirrus Feb 2 at 19:06

I have written down the steps:

➜ Add gem 'newrelic_rpm' to your Gemfile under staging & production
➜ bundle install
➜ Login to heroku control panel and add newrelic addon
➜ Once added, setup automatic pinging to your website so that it does not idle
➜ Browse to Menu > Availability Monitoring (under Settings) → Click “Turn on Availability Monitoring”
➜ Enter the url to ping (eg: http://spokenvote.org)
➜ Select 1 minute for the interval

share|improve this answer
1  
Thanks Pratik. FYI if you ping your app every minute you'll be using up bandwidth without any benefit to idling. Unless you have another reason it's safe to scale that back a touch. – sscirrus May 3 at 19:39
Thanks for the suggestion @sscirrus – Pratik Khadloya May 3 at 20:29

You can get your rails app to poke itself with the 'whenever' gem

every 57.minutes do
  command "wget http://yourapp.herokuapp.com"
end

** (tested) OK well maybe not from Heroku, it turns out you can't run wget from inside the heroku console.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.