richard
richard

Reputation: 12526

Azure App Service Plan D1 - 240 minutes used how?

The Azure App Service Plan D1 says you get 240 minutes/day. Is that the first 240 minutes of every day? Or is this just usage? How does this work if an app service is set to "Always on"?

Upvotes: 6

Views: 2019

Answers (3)

Ivan Glasenberg
Ivan Glasenberg

Reputation: 29995

Is that the first 240 minutes of every day? Or is this just usage?

In App Service Plan D1(Shared), it is just for the usage.

For example, when your website is responding to requests, it actives and you are "on the clock." When the site has been idle for a while, it will effectively go to sleep and you are "off the clock."

If your compute minute usage exceeds the quota (here it's 240 minutes), then Azure will return a 403 message to the browser and your site is unavailable until the quota resets for the next day.

How does this work if an app service is set to "Always on"?

App Service Plan D1(Shared) does not support "Always on" feature.

Upvotes: 6

Sajeetharan
Sajeetharan

Reputation: 222682

The D1 is a Shared plan which is just recommended for test / develop environments but not for production.

And it only supports 240 CPU minutes (Usage) everyday) , You cannot enable Always On Free Tier plans such as F1 AND D1

Upvotes: 2

user793891
user793891

Reputation:

That's 240 minutes of usage per day. Always On is not supported on the D1 plan.

Reference: https://learn.microsoft.com/en-ca/azure/azure-resource-manager/management/azure-subscription-service-limits

Upvotes: 2

Related Questions