培训
认证
Microsoft Certified: Azure Cosmos DB Developer Specialty - Certifications
使用 Microsoft Azure Cosmos DB 在 SQL API 和 SDK 中编写高效的查询、创建索引策略、管理和预配资源。
你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
适用范围: NoSQL
本文说明了如何在 Azure Cosmos DB for NoSQL 的数据库中预配标准(手动)吞吐量。 可以为单个容器预配吞吐量,也可以为数据库预配吞吐量,并在数据库中的容器之间共享吞吐量。 若要了解何时使用容器级别和数据库级别吞吐量,请参阅容器和数据库预配吞吐量的用例一文。 可以使用 Azure 门户或 Azure Cosmos DB SDK 来预配数据库级别吞吐量。
如果使用的是其他 API,请参阅 API for MongoDB、API for Cassandra、API for Gremlin 这几篇文章来预配吞吐量。
登录 Azure 门户。
新建 Azure Cosmos DB 帐户,或选择现有的 Azure Cosmos DB 帐户。
打开“数据资源管理器”窗格,然后选择“新建数据库” 。 提供以下详细信息:
若要创建具有共享吞吐量的数据库,请参阅
备注
可以使用适用于 NoSQL API 的 Azure Cosmos DB SDK 为所有 API 预配吞吐量。 也可以选择将以下示例用于 Cassandra API。
//set the throughput for the database
RequestOptions options = new RequestOptions
{
OfferThroughput = 500
};
//create the database
await client.CreateDatabaseIfNotExistsAsync(
new Database {Id = databaseName},
options);
请参阅以下文章,了解在 Azure Cosmos DB 中预配的吞吐量:
培训
认证
Microsoft Certified: Azure Cosmos DB Developer Specialty - Certifications
使用 Microsoft Azure Cosmos DB 在 SQL API 和 SDK 中编写高效的查询、创建索引策略、管理和预配资源。