你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Start-AzHDInsightJob
在指定的群集上启动定义的 Azure HDInsight 作业。
语法
Start-AzHDInsightJob
[-ClusterName] <String>
[-JobDefinition] <AzureHDInsightJobDefinition>
[-HttpCredential] <PSCredential>
[-ResourceGroupName <String>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
Start-AzHDInsightJob cmdlet 在指定的群集上启动定义的 Azure HDInsight 作业。 可以是 MapReduce 作业、流式处理 MapReduce 作业、Hive 作业或 Pig 作业。
示例
示例 1:在指定的群集上启动作业
# 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
此命令在名为 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 |
-JobDefinition
指定要在 Azure HDInsight 群集上启动的作业。
类型: | AzureHDInsightJobDefinition |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ResourceGroupName
指定资源组的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |