Reputation: 855
As you all knows that if I create azure app service under free tier plan then I don't need to pay any amount for that but now I am creating a azure Webjob under this free tier plan so my question is do I need to pay any extra amount/charge for that ?
I also know that Azure webjob always on feature is not under this pricing tier but that is completely fine for me as per my requirement.
Please give me suggestion on that.
The same thing is applicable to azure function if I create azure function under free app service plan then do I need to pay any extra cost ?
Upvotes: 0
Views: 2445
Reputation: 71
Simple and more Easy way to differenciate Azure Function and Web Job
Azure Function :
Web Job :
Upvotes: 0
Reputation: 8415
You will find that running webjobs and functions in the free plan have drawbacks as mentioned in other answers: you can't activate "always on" in the free plan and this means that a timer function might not run because your app is not active. If you are using Azure Functions you should seriously consider using the consumption plan which includes a generous free grant. Also you can set a daily GBsec quota to ensure you don't exceed the limits of the free grant (e.g. A daily quota of 10,000 GBsec would keep you within the monthly 400,000 GBsec free grant).
Upvotes: 0
Reputation: 3293
Please also know that the WebJob/Function will stop running when the SCM host site has been idle for too long. So we need to configure always on to ensure the continues WebJob/Function run reliably. However we could not able to configure always on in free mode. This is the limitation.
Upvotes: 3
Reputation: 3004
The free app service plan says quite nicely that you don't need to pay anything for the WebJob
or Azure Functions
itself.
Both require Storage Account
which is still chargeable
Upvotes: 0