共用方式為


New-AzureHDInsightStreamingMapReduceJobDefinition

定義新的串流 MapReduce 作業。

注意

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

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

語法

New-AzureHDInsightStreamingMapReduceJobDefinition
   [-Arguments <String[]>]
   [-CmdEnv <String[]>]
   [-Combiner <String>]
   [-Defines <Hashtable>]
   [-Files <String[]>]
   [-InputPath <String>]
   [-JobName <String>]
   [-Mapper <String>]
   [-OutputPath <String>]
   [-Reducer <String>]
   [-StatusFolder <String>]
   [-Profile <AzureSMProfile>]
   [<CommonParameters>]

Description

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

如需如何使用新的 HDInsight 建立叢集的資訊,請參閱 使用 Azure PowerShell 在 HDInsight 中建立以 Linux 為基礎的叢集(https://azure.microsoft.com/en-us/documentation/articles/hdinsight-hadoop-create-linux-clusters-azure-powershell/)。 如需如何使用 Azure PowerShell 和其他方法提交作業的資訊,請參閱 在 HDInsight 中提交 Hadoop 作業 (https://azure.microsoft.com/en-us/documentation/articles/hdinsight-submit-hadoop-jobs-programmatically/)。 如需 Azure PowerShell HDInsight 的參考資訊,請參閱 Azure HDInsight Cmdlet

New-AzureHDInsightStreamingMapReduceJobDefinition Cmdlet 會定義代表 Hadoop 串流作業參數的新作業定義物件。

範例

範例 1:建立串流 MapReduce 作業定義

PS C:\>$StreamingWordCount = New-AzureHDInsightStreamingMapReduceJobDefinition -Files "/Example/Apps/WordCount.exe", "/Example/Apps/Cat.exe" -InputPath "/Example/Data/Gutenberg/Davinci.txt" -OutputPath "/Example/Data/StreamingOutput/WordCount.txt" -Mapper "Cat.exe" -Reducer "WordCount.exe"

此命令會建立指定的串流 MapReduce 作業定義,然後將它儲存在$StreamingWordCount變數中。

參數

-Arguments

指定 Hadoop 作業的引數陣列。 引數會以命令列引數的方式傳遞給每項工作。

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

-CmdEnv

指定要在資料節點上執行作業時設定的命令行環境變數數位。

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

-Combiner

指定合併器檔名。

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

-Defines

指定要在作業執行時設定的Hadoop組態值。

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

-Files

指定作業所需的檔案陣列。

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

-InputPath

指定輸入檔的 WASB 路徑。

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

-JobName

指定新 MapReduce 作業定義的名稱。 這是選用參數。

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

-Mapper

指定 Mapper 檔名。

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

-OutputPath

指定作業輸出的 WASB 路徑。

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

-Profile

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

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

-Reducer

指定歸納器檔名。

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

-StatusFolder

指定資料夾,其中包含作業的標準輸出和錯誤輸出,包括其結束代碼和工作記錄檔。

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