Heroku pricing dyno confusion - heroku

I'd like to buy a "Hobby" package on Heroku but I'm confused by the pricing. It says $7 per Dyno per month, but then it also says you pay for the fraction of actual processing time. So if I have a thousand 100ms requests a day thats just 50 minutes a month. So do I pay 7/(30*24*60)*50 dollars for that total?
What if I dont have a single request for a month at all? Do I still need to pay?
thank you
Edit: I meant minutes, even less then

If your dyno runs 24*7 the whole month you have to pay 7$.
If your dyno runs just one day in a month you pay 7/30 $.
This is what "fraction of actual processing time" means.
So the Hobby Dyno won't cost more then 7$.

Related

How does heroku charge free plan users after they reach the 1,000 free dyno hours?

I have a question regarding Heroku billing. So, every account gets 1,000 free dyno hours per month (if we add credit card info). That is technically enough for 1 app but if there are more than one and they are awake all the time, then I will exceed the 1,000 hours per month. Do you know how I will be charged for extra hours? After 1,000 hours are reached?
2nd question. The other dyno plans (hobby, standard, etc.) charge monthly for like $7, $25, etc. I know these paid accounts never let your app sleep and there is more RAM, free SSL, etc., but the usage pricing still works similar to free plan (with 1,000 free dyno hours and then charged for extra hours). or with these plans I won't be charged more than $7, $25, etc. for dyno hour usages?
You won't be charged after 1000 hours is reached. Your Dyno app will just shut down and not run.
They don't use free dyno hours. If you are running the app continuously for a month it will be $7, $25 etc. If it is just a day it will charge 1/30 of $7, $25 etc. They are billing hourly use but they won't exceed the monthly advertised price.

How much does Heroku Scheduler cost in dynos?

I understand it's a one-off dyno, but i don't get how it works. Does the scheduler take one dyno everytime it needs to schedule.
I need a background job to run once every 24 hours, so i will require the scheduler, how much would this cost? So would it be (750 +30) dyno hours?
It's charged based on how long it runs for at $0.05 per hour prorated to the second. So if it runs 30 times a month and takes a minute to run each time you will be charged $0.0025 - ie total run time 30 minutes a month

What's the minimum time counted for billing in Heroku?

Ec2 instance hour calculated by hour by hour. If you just start and close an instance, it still counted as one hour.
How Heroku handle this? By Minute or By Hour?
Lets assume my app usage exceeds 750 Free Dyno Hour Limit
Heroku prorata to the second. A dyno costs $0.05 per hour. So if you go over 750 hours you will be charged at $0.05 per hour or $0.000833333 per minute. In fact, pretty much all addons also follow the same billing model too.
You can read about billing and charges as https://devcenter.heroku.com/articles/usage-and-billing#cost
I will say, though, that the previous answer seems to be more accurate for the web dyno versus a worker dyno. Heroku's automated sleep cycle for your web dyno tries to prevent it from running too long when it's idle, say, for more than an hour. For the free web dyno it must sleep at least six hours per day for it not to incur charges. As long as you set the scaling to 1 for your web dyno and it sleeps then it should be free.
That said, when you add your first worker dyno those same automations aren't applied to this dyno. It presumably won't be triggered to sleep on idling for an hour. This means that unless you manage it you'll likely be charged $34.50 for each worker dyno per month. I wouldn't exactly call this lying to the customer but most people start off with that first free dyno, get comfortable with that and then innocently think that the next dyno will behave in a similar way--it won't and you'll likely get tagged paying more money than you'd bargained for. That's $414-per-year for a dyno. Compare this with Amazon's t2.micro cost of $150-per-year for one instance or $75-per-year for a 50% duty cycle of same.
As they say, "the devil is in the details". Heroku might be cheap for vanity websites but it's a bit costly if you have a database and worker thread (without any scaling otherwise whatsoever).

Dyno pricing confusion

The following statements seem contradictory to me
Dynos cost $0.05 per hour, prorated to the second. For example, an app with four dynos is charged $0.20 per hour for each hour that the four dynos are running.
Pricing is based on calendar time. If you set your app to four dynos, you will be charged $0.20 per hour regardless of the traffic your site serves during that time.
(as seen here)
I'm reading it as "you will be charged for a running dyno" then "you will be charged whether or not the dyno is being used"
Please clarify my understanding, because it seems most people don't have this same confusion.
A Heroku dyno is considered running when it is ready to receive requests, not necessarily when it is actually serving requests. To rephrase:
For example, an app with four dynos is charged $0.20 per hour for each hour that the four dynos are provisioned

How much monthly hours does the Scheduler addon take on Heroku?

In the Heroku documentation it's said that addons, such as Scheduler, add up to your montly hours, meaning you would have to pay if it adds up more than 30 hours (I have only one web dyno, so I'm using 720 montly hours, and the maximum free is 750 hours). So, how to calculate how much Scheduler takes from your montly hours? For example, if I have a daily task, how much would it take from my montly hours?
It means the wall clock time of the time taken for the jobs that are executed by scheduler to run.
So, for instance, if you're running a 1 minute job every hour, you'd be looking at 720 minutes of time every 30 days.
I believe this last answer is incorrect - the scheduler costs the same hourly as a regular dyno - right?

Resources