Azure是否会自动更改数据库的定价层?

lskq00tm  于 2023-10-22  发布在  其他
关注(0)|答案(1)|浏览(89)

我在Azure中创建了一个“Web App + DB”,并将我的ASP.NET API部署到其中。对于SQL数据库,我选择了“自由计划”。
现在,在运行API几天后(只编写了十几个数据集,进行了大约30次API调用),Azure/Microsoft将定价层从“免费”更改为“S 0”,并将另一个API的定价层从“免费”更改为“基本”。现在数据库每天都产生成本。
为什么会这样?我怎么能不问我就阻止Azure这样做呢?

**更新:**一些屏幕截图说明Azure中SQL数据库的免费计划的可用性。

目前,我有3个SQL数据库与免费计划(多久?没有人知道)和2个基本数据库,这是以前的免费计划数据库:

r8xiu3jd

r8xiu3jd1#

更新:在2018年发布问题时,使用PowerShell创建免费数据库的过程是唯一可用的。从2023年9月26日开始,Azure提供free Azure SQL Database(预览版),每月的vCore计算时间限制为100,000秒。此免费产品在订阅的生命周期内提供通用数据库。此优惠按地区推出,每周都会增加新的地区。目前支持以下区域:美国东部、美国中西部、英国南部。
Azure SQL数据库允许您为每个区域创建一个免费的Azure SQL Server数据库,它会在365天后恢复为标准。这就是我所知道的,自从你使用PowerShell创建它(我不知道使用其他方法)。

New-AzureRmSqlDatabase -DatabaseName $DatabaseName  -ServerName $sqlServer.ServerName 
-ResourceGroupName $resourceGroup.ResourceGroupName -Edition 'Free' 
-RequestedServiceObjectiveName 'Free'

目前,这仅适用于以下地区:

Location           DisplayName
 --------           -------------------
 australiaeast      Australia East
 australiasoutheast Australia Southeast
 centralindia       Central India
 eastasia           East Asia
 francecentral      France Central
 japaneast          Japan East
 japanwest          Japan West
 koreacentral       Korea Central
 koreasouth         Korea South
 northcentralus     North Central US
 northeurope        North Europe
 southeastasia      Southeast Asia
 southindia         South India
 uksouth            UK South
 ukwest             UK West
 westcentralus      West Central US
 westeurope         West Europe
 westindia          West India
 westus2            West US 2

相关问题