Start-AzHDInsightJob
Startar ett definierat Azure HDInsight-jobb i ett angivet kluster.
Syntax
Start-AzHDInsightJob
[-ClusterName] <String>
[-JobDefinition] <AzureHDInsightJobDefinition>
[-HttpCredential] <PSCredential>
[-ResourceGroupName <String>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
Cmdleten Start-AzHDInsightJob startar ett definierat Azure HDInsight-jobb i ett angivet kluster. Det kan vara ett MapReduce-jobb, ett MapReduce-direktuppspelningsjobb, ett Hive-jobb eller ett Pig-jobb.
Exempel
Exempel 1: Starta ett jobb i det angivna klustret
# Cluster info
$clusterName = "your-hadoop-001"
$clusterCreds = Get-Credential
# Hive job details
$statusFolder = "tempStatusFolder/"
$query = "SHOW TABLES"
New-AzHDInsightHiveJobDefinition -StatusFolder $statusFolder `
-Query $query `
| Start-AzHDInsightJob `
-ClusterName $clusterName `
-ClusterCredential $clusterCreds
Det här kommandot startar ett jobb i klustret med namnet your-hadoop-001.
Parametrar
-ClusterName
Anger namnet på klustret.
Typ: | String |
Position: | 0 |
Standardvärde: | None |
Obligatorisk: | True |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |
-DefaultProfile
Autentiseringsuppgifter, konto, klientorganisation och prenumeration som används för kommunikation med Azure
Typ: | IAzureContextContainer |
Alias: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
Standardvärde: | None |
Obligatorisk: | False |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |
-HttpCredential
Anger autentiseringsuppgifterna för klusterinloggning (HTTP) för klustret.
Typ: | PSCredential |
Alias: | ClusterCredential |
Position: | 2 |
Standardvärde: | None |
Obligatorisk: | True |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |
-JobDefinition
Anger det jobb som ska startas i Azure HDInsight-klustret.
Typ: | AzureHDInsightJobDefinition |
Position: | 1 |
Standardvärde: | None |
Obligatorisk: | True |
Godkänn pipeline-indata: | True |
Godkänn jokertecken: | False |
-ResourceGroupName
Anger namnet på resursgruppen.
Typ: | String |
Position: | Named |
Standardvärde: | None |
Obligatorisk: | False |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |