使用 Azure CLI 建立 Azure 時間序列深入解析 Gen2 環境
注意
「時間序列深入解析」服務將於 2024 年 7 月 7 日淘汰。 請考慮盡快將現有的環境移轉至替代解決方案。 如需淘汰和移轉的詳細資訊,請造訪我們的文件。
本文件將引導您建立新的時間序列深入解析 Gen2 環境。
Azure Cloud Shell
Azure Cloud Shell 是裝載於 Azure 中的互動式殼層環境,可在瀏覽器中使用。 您可以使用 Bash 或 PowerShell 搭配 Cloud Shell,與 Azure 服務共同使用。 您可以使用 Cloud Shell 預先安裝的命令,執行本文提到的程式碼,而不必在本機環境上安裝任何工具。
要啟動 Azure Cloud Shell:
選項 | 範例/連結 |
---|---|
選取程式碼或命令區塊右上角的 [試試看]。 選取 [試試看] 並不會自動將程式碼或命令複製到 Cloud Shell 中。 | |
請前往 https://shell.azure.com,或選取 [啟動 Cloud Shell] 按鈕,在瀏覽器中開啟 Cloud Shell。 | |
選取 Azure 入口網站右上方功能表列上的 [Cloud Shell] 按鈕。 |
若要使用 Azure Cloud Shell:
啟動 Cloud Shell。
選取程式碼區塊 (或命令區塊) 上的 [複製] 按鈕以複製程式碼或命令。
透過在 Windows 和 Linux 上選取 Ctrl+Shift+V;或在 macOS 上選取 Cmd+Shift+V,將程式碼或命令貼到 Cloud Shell 工作階段中。
選取 Enter 鍵執行程式碼或命令。
必要條件
- 為環境的冷存放區建立 Azure 儲存體帳戶。 此帳戶是針對記錄資料的長期保留和分析所設計的。
注意
在您的程式碼中,以冷儲存體帳戶的唯一名稱取代 mytsicoldstore
。
首先,請建立儲存體帳戶:
storage=mytsicoldstore
rg=-my-resource-group-name
az storage account create -g $rg -n $storage --https-only
key=$(az storage account keys list -g $rg -n $storage --query [0].value --output tsv
建立環境
現在已建立儲存體帳戶,並將其名稱和管理金鑰指派給變數,請執行下列命令來建立 Azure 時間序列深入解析環境:
注意
在您的程式碼中,以案例的唯一名稱取代下列內容:
my-tsi-env
具有您的環境名稱。my-ts-id-prop
具有時間序列識別碼屬性的名稱。
az tsi environment gen2 create --name "my-tsi-env" --location eastus2 --resource-group $rg --sku name="L1" capacity=1 --time-series-id-properties name=my-ts-id-prop type=String --warm-store-configuration data-retention=P7D --storage-configuration account-name=$storage management-key=$key
移除 Azure 時間序列深入解析環境
您可以使用 Azure CLI 來刪除個別資源,例如時間序列深入解析環境,或刪除資源群組及其所有資源,包括任何時間序列深入解析環境。
若要刪除時間序列深入解析環境,請執行下列命令:
az tsi environment delete --name "my-tsi-env" --resource-group $rg
若要刪除儲存體帳戶,請執行下列命令:
az storage account delete --name $storage --resource-group $rg
若要刪除資源群組 (英文) 及其所有資源,請執行下列命令︰
az group delete --name $rg