共用方式為


Get-AzureHDInsightJobOutput

取得作業的記錄輸出。

注意

本文件中參考的 Cmdlet 用於管理使用 Azure Service Manager(ASM) API 的舊版 Azure 資源。 建立新的資源時,不建議使用此舊版 PowerShell 模組,因為 ASM 已排定淘汰。 如需詳細資訊,請參閱 Azure Service Manager 淘汰

Az PowerShell 模組是使用 PowerShell 管理 Azure Resource Manager (ARM) 資源的建議 PowerShell 模組。

語法

Get-AzureHDInsightJobOutput
   [-Certificate <X509Certificate2>]
   [-HostedService <String>]
   -Cluster <String>
   [-DownloadTaskLogs]
   [-Endpoint <Uri>]
   [-IgnoreSslErrors <Boolean>]
   -JobId <String>
   [-StandardError]
   [-StandardOutput]
   [-Subscription <String>]
   [-TaskLogsDirectory <String>]
   [-TaskSummary]
   [-Profile <AzureSMProfile>]
   [<CommonParameters>]

Description

此版本的 Azure PowerShell HDInsight 已被取代。 這些 Cmdlet 將於 2017 年 1 月 1 日移除。 請使用較新版本的 Azure PowerShell HDInsight。

如需如何使用新的 HDInsight 建立叢集的資訊,請參閱使用 Azure PowerShell 在 HDInsight 中建立以 Linux 為基礎的叢集。 如需如何使用 Azure PowerShell 和其他方法提交作業的資訊,請參閱 在 HDInsight 中提交 Hadoop 作業。 如需 Azure PowerShell HDInsight 的參考資訊,請參閱 Azure HDInsight Cmdlet

Get-AzureHDInsightJobOutput Cmdlet 會從與叢集相關聯的記憶體帳戶取得作業的記錄輸出。 您可以取得各種類型的作業記錄,包括標準輸出、標準錯誤、工作記錄,以及工作記錄的摘要。

範例

範例 1:取得作業輸出

PS C:\>$SubId = (Get-AzureSubscription -Current).SubscriptionId
PS C:\> $ClusterName = "MyCluster"
PS C:\> $WordCountJob = New-AzureHDInsightMapReduceJobDefinition -JarFile "/Example/Apps/Hadoop-examples.jar" -ClassName "Wordcount" -Defines @{ "mapred.map.tasks" = "3" } -Arguments "/Example/Data/Gutenberg/Davinci.txt", "/Example/Output/WordCount" $WordCountJob
    | Start-AzureHDInsightJob -Subscription $SubId -Cluster $ClusterName
    | Wait-AzureHDInsightJob -Subscription $SubId -WaitTimeoutInSeconds 3600
    | Get-AzureHDInsightJobOutput -Cluster $ClusterName -StandardError

第一個命令會取得目前訂用帳戶的標識符,然後將它儲存在$SubId變數中。

第二個命令會將名稱 MyCluster 儲存在 $Clustername 變數中。

第三個命令會建立 MapReduce 作業定義,然後將它儲存在$WordCountJob變數中。 命令會將$WordCountJob中的作業傳遞至 Start-AzureHDInsightJob Cmdlet 以啟動作業。 它也會將$WordCountJob傳遞至 Wait-AzureHDInsightJob Cmdlet 以等候作業完成,然後使用 Get-AzureHDInsightJobOutput 來取得作業輸出。

參數

-Certificate

指定 Azure 訂用帳戶的管理憑證。

類型:X509Certificate2
別名:Cert
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Cluster

指定叢集。 這個 Cmdlet 會從此參數指定的叢集取得作業記錄。

類型:String
別名:ClusterName
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-DownloadTaskLogs

指出此 Cmdlet 會取得作業的工作記錄。

類型:SwitchParameter
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Endpoint

指定要用來連線到 Azure 的端點。 如果您未指定此參數,此 Cmdlet 會使用預設端點。

類型:Uri
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-HostedService

如果您不想使用預設命名空間,請指定 HDInsight 服務的命名空間。

類型:String
別名:CloudServiceName
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-IgnoreSslErrors

指出是否忽略安全套接字層 (SSL) 錯誤。

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-JobId

指定要取得之作業的識別碼。

類型:String
別名:Id
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-Profile

指定此 Cmdlet 從中讀取的 Azure 設定檔。 如果您未指定設定檔,此 Cmdlet 會從本機預設配置檔讀取。

類型:AzureSMProfile
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-StandardError

指出此 Cmdlet 會取得作業的 StdErr 輸出。

類型:SwitchParameter
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-StandardOutput

指出此 Cmdlet 會取得作業的 SdtOut 輸出。

類型:SwitchParameter
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Subscription

指定要取得之 HDInsight 叢集的訂用帳戶。

類型:String
別名:Sub
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-TaskLogsDirectory

指定要在其中儲存工作記錄的本機資料夾。

類型:String
別名:LogsDir
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-TaskSummary

指出此 Cmdlet 會取得工作記錄摘要。

類型:SwitchParameter
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False