Create an Azure Data Explorer cluster and database by using Azure CLI

Azure Data Explorer is a fast, fully managed data analytics service for real-time analysis on large volumes of data streaming from applications, websites, IoT devices, and more. To use Azure Data Explorer, you first create a cluster, and create one or more databases in that cluster. Then you ingest (load) data into a database so that you can run queries against it. In this article, you create a cluster and a database by using Azure CLI.

Prerequisites

Use Azure Cloud Shell

Azure hosts Azure Cloud Shell, an interactive shell environment that you can use through your browser. You can use either Bash or PowerShell with Cloud Shell to work with Azure services. You can use the Cloud Shell preinstalled commands to run the code in this article without having to install anything on your local environment.

To start Azure Cloud Shell:

Option Example/Link
Select Try It in the upper-right corner of a code block. Selecting Try It doesn't automatically copy the code to Cloud Shell. Example of Try It for Azure Cloud Shell.
Go to https://shell.azure.com, or select the Launch Cloud Shell button to open Cloud Shell in your browser. Launch Cloud Shell in a new window.
Select the Cloud Shell button on the menu bar at the upper right in the Azure portal. Cloud Shell button in the Azure portal.

To run the code in this article in Azure Cloud Shell:

  1. Start Cloud Shell.

  2. Select the Copy button on a code block to copy the code.

  3. Paste the code into the Cloud Shell session by selecting Ctrl+Shift+V on Windows and Linux or by selecting Cmd+Shift+V on macOS.

  4. Select Enter to run the code.

Configure the CLI parameters

If you choose to install and use the Azure CLI locally, this article requires the Azure CLI version 2.0.4 or later. Run az --version to check your version. If you need to install or upgrade, see Install the Azure CLI.

The following steps aren't required if you're running commands in Azure Cloud Shell. If you're running the CLI locally, follow these steps to sign in to Azure, and to set your current subscription:

  1. Install extension to use the latest Kusto CLI version:

    az extension add -n kusto
    
  2. Run the following command to sign in to Azure:

    az login
    
  3. Set the subscription where you want your cluster to be created. Replace MyAzureSub with the name of the Azure subscription that you want to use:

    az account set --subscription MyAzureSub
    
  4. Set the resource group where you want your cluster to be created. Replace testrg with the name of the resource group that you want to use:

    az group create --name testrg --location westus
    

Create the Azure Data Explorer cluster

  1. Create your cluster by using the following command:

    az kusto cluster create --cluster-name azureclitest --sku name="Standard_E8ads_v5" tier="Standard" --resource-group testrg --location westus
    
    Setting Suggested value Field description
    name azureclitest The desired name of your cluster.
    sku Standard_E8ads_v5 The SKU that will be used for your cluster. Parameters: name - The SKU name. tier - The SKU tier.
    resource-group testrg The resource group name where the cluster will be created.
    location westus The location where the cluster will be created.

    There are other optional parameters that you can use, such as the capacity of the cluster.

  2. Run the following command to check whether your cluster was successfully created:

    az kusto cluster show --cluster-name azureclitest --resource-group testrg
    

If the result contains provisioningState with the Succeeded value, then the cluster was successfully created.

Create the database in the Azure Data Explorer cluster

  1. Create your database by using the following command:

    az kusto database create --cluster-name azureclitest --database-name clidatabase --resource-group testrg --read-write-database soft-delete-period=P365D hot-cache-period=P31D location=westus
    
    Setting Suggested value Field description
    cluster-name azureclitest The name of your cluster where the database will be created.
    database-name clidatabase The name of your database.
    resource-group testrg The resource group name where the cluster will be created.
    read-write-database P365D P31D westus The database type. Parameters: soft-delete-period - Signifies the amount of time the data will be kept available to query. See retention policy for more information. hot-cache-period - Signifies the amount of time the data will be kept in cache. See cache policy for more information. location -The location where the database will be created.
  2. Run the following command to see the database that you created:

    az kusto database show --database-name clidatabase --resource-group testrg --cluster-name azureclitest
    

You now have a cluster and a database.

Clean up resources

  • If you plan to follow our other articles, keep the resources you created.

  • To clean up resources, delete the cluster. When you delete a cluster, it also deletes all the databases in it. Use the following command to delete your cluster:

    az kusto cluster delete --cluster-name azureclitest --resource-group testrg
    

Next steps