对 DocumentDB 定价感到困惑
Confused About DocumentDB Pricing
我看到在 Microsoft Azure Website 中,DocumentDB 的定价基于 collections。例如,对于 1GB 存储空间和 100 RU,我需要支付大约 (~£4/mo) 的费用。
描述是:
At any scale, you can store data and provision throughput capacity.
Each collection is billed hourly based on the amount of data stored
(in GBs) and throughput reserved in units of 100 RUs/second.
我的困惑是:它真的为我拥有的每个 collection 收费吗?如果我的应用程序使用一个包含 20 collection 的数据库,我应该付费(~80 英镑/月)吗?或者 collection 表示数据库?
谢谢大家
您的理解是正确的。您必须为每个集合付费,因为每个集合都定义了吞吐量。因此,在您的示例中,您将为 20 个系列支付 80 英镑(或每个系列 4 英镑)。
Document DB 中的集合可以被认为等同于普通数据库术语中的 table。它不等同于数据库。
我看到在 Microsoft Azure Website 中,DocumentDB 的定价基于 collections。例如,对于 1GB 存储空间和 100 RU,我需要支付大约 (~£4/mo) 的费用。
描述是:
At any scale, you can store data and provision throughput capacity. Each collection is billed hourly based on the amount of data stored (in GBs) and throughput reserved in units of 100 RUs/second.
我的困惑是:它真的为我拥有的每个 collection 收费吗?如果我的应用程序使用一个包含 20 collection 的数据库,我应该付费(~80 英镑/月)吗?或者 collection 表示数据库?
谢谢大家
您的理解是正确的。您必须为每个集合付费,因为每个集合都定义了吞吐量。因此,在您的示例中,您将为 20 个系列支付 80 英镑(或每个系列 4 英镑)。
Document DB 中的集合可以被认为等同于普通数据库术语中的 table。它不等同于数据库。