创建 Azure Cosmos DB 帐户数据库和集合

Posted JackSun924

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建 Azure Cosmos DB 帐户数据库和集合相关的知识,希望对你有一定的参考价值。

运行所示的命令,以创建 Azure Cosmos DB 帐户、数据库和集合:

export NAME="jacksun"

export RESOURCE_GROUP="92116f19-67b4-4078-8e64-b488b5c5cede"

export LOCATION="EastUS"

export DB_NAME="Products"

az cosmosdb create --name $NAME --kind GlobalDocumentDB --resource-group $RESOURCE_GROUP

az cosmosdb database create --name $NAME --db-name $DB_NAME --resource-group $RESOURCE_GROUP

az cosmosdb collection create --collection-name "Clothing" --partition-key-path "/productId" --throughput 1000 --name $NAME --db-name $DB_NAME --resource-group $RESOURCE_GROUP

以上是关于创建 Azure Cosmos DB 帐户数据库和集合的主要内容,如果未能解决你的问题,请参考以下文章

无法使用 Microsoft.EntityFrameworkCore.Cosmos 连接到 Azure Cosmos Db 帐户 - 响应状态代码

Azure Rest API 用于获取 Cosmos DB 帐户的 RU 指标

将Cosmos DB模拟器(MongoDB API)迁移到Azure时发生致命错误

Azure 数据工厂和 Cosmos DB

azure cosmos db 在 mongodb.com 中创建了集合

azure cosmos db 在 mongodb.com 中创建了集合