Stop-AzHDInsightJob
停止叢集上的指定執行中作業。
語法
Stop-AzHDInsightJob
[-ClusterName] <String>
[-JobId] <String>
[-HttpCredential] <PSCredential>
[-ResourceGroupName <String>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
Stop-AzHDInsightJob Cmdlet 會在 Azure HDInsight 叢集上停止指定的執行中作業。
範例
範例 1:停止指定叢集上的作業
# Cluster info
$clusterName = "your-hadoop-001"
$clusterCreds = Get-Credential
Stop-AzHDInsightJob `
-ClusterName $clusterName `
-ClusterCredential $clusterCreds `
-JobId $jobId
此命令會在名為your-hadoop-001的叢集上停止作業。
參數
-ClusterName
指定叢集的名稱。
類型: | String |
Position: | 0 |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-DefaultProfile
用於與 azure 通訊的認證、帳戶、租用戶和訂用帳戶
類型: | IAzureContextContainer |
別名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-HttpCredential
指定叢集的叢集登入 (HTTP) 認證。
類型: | PSCredential |
別名: | ClusterCredential |
Position: | 2 |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-JobId
指定作業的作業識別碼。
類型: | String |
Position: | 1 |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-ResourceGroupName
指定資源群組的名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |