Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase cloud scheduler function cost [closed]

Firebase indicates the cost for cloud scheduler jobs as $0.10 here: https://firebase.google.com/docs/functions/schedule-functions

Does that mean you would be charged $864 dollars per month if you had a job that ran every 5 minutes???

Updated: Even though answered, just to clarify the reason I asked the question is because the docs referenced did not distinguish between a "job" and as Doug mentioned, the invocation. If you are going to down-vote, it would be helpful to understand why. Thanks.

like image 809
Love to Code Avatar asked Jul 26 '20 03:07

Love to Code


People also ask

Is Cloud Functions free?

Cloud Functions includes a perpetual free tier for invocations to allow you to experiment with the platform at no charge. Note that even for free tier usage, we require a valid billing account.

How can we stop cloud function?

You cannot disable a function. Just comment the function body. It would be a good practice to log the call in the console and then return null so you can keep track whenever the function is invoked.

How many requests can handle a single cloud function?

Cloud Run has the capability to handle up to 80 concurrent requests with the same instance. At the opposite, Cloud Functions create as many instances as the concurrent requests.


Video Answer


1 Answers

No, the cost is per job definition, not per job invocation. If you define 3 jobs, it's $0.30 per month, no matter how many times they execute.

like image 50
Doug Stevenson Avatar answered Oct 17 '22 14:10

Doug Stevenson