单应用服务计划中多应用的应用服务计划计算及其可扩展性
App service plan calculation for multiple app in single app service plan and its scalability
我知道已经有一些关于此的问题。我仍然对定价感到困惑。
我的场景如下
- 1 个应用服务计划(标准 s2、3.5 RAM、50 GB 大小)
- 6 个 App Service 属于该计划。
这是否意味着所有 6 个应用共享 3.5 GB RAM 和 50 GB 存储空间,或者每个应用都有 3.5 GB RAM 和 50 GB?
还计划指出 10 个实例自动缩放。这到底是什么意思?各应用服务规模瞬间或各应用服务单独规模。
所有 6 个应用将共享 same resources:
When you create an app in App Service, it is put into an App Service plan. When the app runs, it runs on all the VM instances configured in the App Service plan. If multiple apps are in the same App Service plan, they all share the same VM instances. If you have multiple deployment slots for an app, all deployment slots also run on the same VM instances. If you enable diagnostic logs, perform backups, or run WebJobs, they also use CPU cycles and memory on these VM instances.
就在应用服务计划中完成的缩放而言,缩放将再次应用于所有应用服务:
In this way, the App Service plan is the scale unit of the App Service apps. If the plan is configured to run five VM instances, then all apps in the plan run on all five instances. If the plan is configured for autoscaling, then all apps in the plan are scaled out together based on the autoscale settings.
我知道已经有一些关于此的问题。我仍然对定价感到困惑。
我的场景如下
- 1 个应用服务计划(标准 s2、3.5 RAM、50 GB 大小)
- 6 个 App Service 属于该计划。
这是否意味着所有 6 个应用共享 3.5 GB RAM 和 50 GB 存储空间,或者每个应用都有 3.5 GB RAM 和 50 GB?
还计划指出 10 个实例自动缩放。这到底是什么意思?各应用服务规模瞬间或各应用服务单独规模。
所有 6 个应用将共享 same resources:
When you create an app in App Service, it is put into an App Service plan. When the app runs, it runs on all the VM instances configured in the App Service plan. If multiple apps are in the same App Service plan, they all share the same VM instances. If you have multiple deployment slots for an app, all deployment slots also run on the same VM instances. If you enable diagnostic logs, perform backups, or run WebJobs, they also use CPU cycles and memory on these VM instances.
就在应用服务计划中完成的缩放而言,缩放将再次应用于所有应用服务:
In this way, the App Service plan is the scale unit of the App Service apps. If the plan is configured to run five VM instances, then all apps in the plan run on all five instances. If the plan is configured for autoscaling, then all apps in the plan are scaled out together based on the autoscale settings.