运行所示的命令,以创建 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
原文地址:https://www.cnblogs.com/sundy818/p/10445167.html
时间: 2024-11-09 15:04:01