频繁更新 blob 的 azure blob 定价

azure blob pricing with frequent blob update

我打算在我的 Azure 存储中放置大约 10M 的 blob。

文件大小约为 100KB。

每小时我想在特定位置(使用搜索)向每个文件添加大约 100 个字节。

我从天蓝色的定价中看到:

放置Blob/Block、列出、创建容器操作 (每 10,000 人)- 0.1 美元

除了删除之外的所有其他操作,它是免费的 (每 10,000 人)- 0.01 美元

(取自https://azure.microsoft.com/en-us/pricing/details/storage/blobs/

我的问题是:除...之外的所有其他操作我是否还需要为从 blob 读取/关闭 blob/查找操作付费?他们认为这是一项手术吗?

All other operations except... Do i need to pay also for the read from blob/ close blob / seek operations ? are they consider as an operation ?

据我所知,所有操作都被视为 Azure 中的 REST API 操作。

从 blob 中读取:使用 Get 方法从 blob 中获取文件,它认为这是除删除之外的所有其他操作。 除删除之外的所有其他操作的价格为 0.05 美元(每 10,000 个 LRS 冷)。

关闭 blob:您是说删除 blob 吗?如果你想删除 blob,它是免费的。

Seek blob:如果要seek blob,需要使用list blob的方法,这就是Put Blob/Block, List, Create Container操作。 Put Blob/Block、List、Create Container 操作的价格为 0.10 美元(LRS Cold 每 10,000)。