你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzHDInsightJobOutput
从与指定群集关联的存储帐户中获取作业的日志输出。
语法
Get-AzHDInsightJobOutput
[-ClusterName] <String>
[-JobId] <String>
[[-DefaultContainer] <String>]
[[-DefaultStorageAccountName] <String>]
[[-DefaultStorageAccountKey] <String>]
[-HttpCredential] <PSCredential>
[-ResourceGroupName <String>]
[-DisplayOutputType <JobDisplayOutputType>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
Get-AzHDInsightJobOutput cmdlet 从与 Azure HDInsight 群集关联的存储帐户获取作业的日志输出。
示例
示例 1:获取作业的日志输出
# Cluster info
$clusterName = "your-hadoop-001"
$clusterCreds = Get-Credential
# Hive job details
$statusFolder = "<status folder>"
$query = "<query here>"
New-AzHDInsightHiveJobDefinition -StatusFolder $statusFolder `
-Query $query `
| Start-AzHDInsightJob `
-ClusterName $clusterName `
-ClusterCredential $clusterCreds `
| Get-AzHDInsightJobOutput `
-ClusterName $clusterName `
-ClusterCredential $clusterCreds
此命令从名为 your-hadoop-001 的群集获取日志输出。
参数
-ClusterName
指定群集的名称。
类型: | String |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-DefaultContainer
指定默认容器名称。
类型: | String |
Position: | 2 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DefaultProfile
用于与 azure 通信的凭据、帐户、租户和订阅
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DefaultStorageAccountKey
指定默认存储帐户密钥。
类型: | String |
Position: | 4 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DefaultStorageAccountName
指定默认存储帐户名称。
类型: | String |
Position: | 3 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DisplayOutputType
指定要请求的作业输出类型。 此参数的可接受值为:
- StandardOutput
- 标准误差
类型: | JobDisplayOutputType |
接受的值: | StandardOutput, StandardError |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-HttpCredential
指定群集的群集登录名 (HTTP) 凭据。
类型: | PSCredential |
别名: | ClusterCredential |
Position: | 5 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-JobId
指定将提取其输出的作业的作业 ID。
类型: | String |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-ResourceGroupName
指定资源组的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输入
None