Share via


Azure CLI gebruiken om een API te maken voor een Gremlin-account, -database en -grafiek met automatische schaalaanpassing

VAN TOEPASSING OP: Gremlin

Met het script in dit artikel maakt u een Azure Cosmos DB voor Gremlin-account, -database en -grafiek met automatische schaalaanpassing.

Vereisten

  • Als u geen Azure-abonnement hebt, kunt u een gratis Azure-account maken voordat u begint.

  • Voor dit script is Azure CLI versie 2.30 of hoger vereist.

    • U kunt het script uitvoeren in de Bash-omgeving in Azure Cloud Shell. Wanneer Cloud Shell wordt geopend, moet u Bash selecteren in het omgevingsveld linksboven in het shell-venster. Cloud Shell heeft de nieuwste versie van Azure CLI.

    • Als u wilt, kunt u Azure CLI installeren om het script lokaal uit te voeren. Voer az-versie uit om uw Azure CLI-versie te vinden en voer az upgrade uit als u een upgrade wilt uitvoeren. Meld u aan bij Azure door az login uit te voeren.

Voorbeeldscript

In dit script worden de volgende opdrachten gebruikt:

# Create a Gremlin API database and graph with autoscale

# Variable block
let "randomIdentifier=$RANDOM*$RANDOM"
location="East US"
resourceGroup="msdocs-cosmosdb-rg-$randomIdentifier"
tag="autoscale-gremlin-cosmosdb"
account="msdocs-account-cosmos-$randomIdentifier" #needs to be lower case
database="msdocs-db-gremlin-cosmos"
graph="msdocs-graph1-gremlin-cosmos"
partitionKey="/partitionKey"
maxThroughput=1000 #minimum = 1000

# Create a resource group
echo "Creating $resourceGroup in $location..."
az group create --name $resourceGroup --location "$location" --tags $tag

# Create a Cosmos account for Gremlin API
echo "Creating $account"
az cosmosdb create --name $account --resource-group $resourceGroup --capabilities EnableGremlin --default-consistency-level Eventual --locations regionName="$location" failoverPriority=0 isZoneRedundant=False

# Create a Gremlin database
echo "Creating $database with $account"
az cosmosdb gremlin database create --account-name $account --resource-group $resourceGroup --name $database

# Create a Gremlin graph with autoscale
echo "Creating $graph"
az cosmosdb gremlin graph create --account-name $account --resource-group $resourceGroup --database-name $database --name $graph --partition-key-path $partitionKey --max-throughput $maxThroughput

Resources verwijderen

Als u de resources die het script hebt gemaakt niet nodig hebt, gebruikt u de opdracht az group delete om de resourcegroep en alle resources te verwijderen die het bevat, inclusief het Azure Cosmos DB-account en de database.

az group delete --name $resourceGroup

Volgende stappen

Documentatie voor Azure Cosmos DB CLI