Add-AzureHDInsightScriptAction
新增 HDInsight 腳本動作。
注意
本文件中參考的 Cmdlet 用於管理使用 Azure Service Manager(ASM) API 的舊版 Azure 資源。 建立新的資源時,不建議使用此舊版 PowerShell 模組,因為 ASM 已排定淘汰。 如需詳細資訊,請參閱 Azure Service Manager 淘汰。
Az PowerShell 模組是使用 PowerShell 管理 Azure Resource Manager (ARM) 資源的建議 PowerShell 模組。
語法
Add-AzureHDInsightScriptAction
-Config <AzureHDInsightConfig>
-Name <String>
-ClusterRoleCollection <ClusterNodeType[]>
-Uri <Uri>
[-Parameters <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。
Add-AzureHDInsightScriptAction Cmdlet 提供 Azure HDInsight 功能,可用來安裝其他軟體,或使用 Windows PowerShell 腳本變更在 Hadoop 叢集上執行的應用程式組態。
部署 HDInsight 叢集時,腳本動作會在叢集節點上執行,並在叢集中的節點完成 HDInsight 設定之後執行。 腳本動作會以系統管理員帳戶許可權執行,並提供叢集節點的完整訪問許可權。 您可以為每個叢集提供一份腳本動作清單,以指定的順序執行。
範例
範例 1:將腳本動作新增至叢集
PS C:\>$Config = New-AzureHDInsightClusterConfig -ClusterSizeInNodes 4
PS C:\> $Config = Add-AzureHDInsightScriptAction -Config $Config -Name "TestScriptAction" -Uri http://test.com/test.ps1 -Parameters "test" -ClusterRoleCollection HeadNode,DataNode
PS C:\> New-AzureHDInsightCluster -Config $Config
第一個命令會使用 New-AzureHDInsightClusterConfig Cmdlet 來建立 HDInsight 叢集組態,然後將它儲存在$Config變數中。
第二個命令會使用 Add-AzureHDInsightScriptAction Cmdlet,將名為 TestScriptAction 的腳本動作新增至$Config。
最後一個命令會使用 New-AzureHDInsightCluster Cmdlet 來建立新的 HDInsight 叢集,以執行儲存在 $Config 中的腳本動作。
範例 2:將多個腳本動作新增至叢集
PS C:\>$Config = New-AzureHDInsightClusterConfig -ClusterSizeInNodes 4
PS C:\> $Config = Add-AzureHDInsightScriptAction -Config $Config -Name "TestScriptAction1" -Uri http://test.com/test1.ps1 -Parameters "Test1" -ClusterRoleCollection HeadNode,DataNode | Add-AzureHDInsightScriptAction -Config $Config -Name "TestScriptAction2" -Uri http://test.com/test2.ps1 -ClusterRoleCollection HeadNode
PS C:\> New-AzureHDInsightCluster -Config $Config
第一個命令會使用 New-AzureHDInsightClusterConfig Cmdlet 來建立 HDInsight 叢集組態,然後將它儲存在$Config變數中。
第二個命令會使用 Add-AzureHDInsightScriptAction Cmdlet 將指定的腳本動作新增至$Config,然後使用管線運算符第二次將$Config傳遞至 Add-AzureHDInsightScriptAction ,以將第二個腳本動作新增至$Config。
最後一個命令會使用 New-AzureHDInsightCluster Cmdlet 來建立叢集,以在 $Config 中執行腳本動作。
參數
-ClusterRoleCollection
指定要執行文稿的節點。 此參數可接受的值為:HeadNode 或 DataNode。
您可以指定一個值或兩個值。
類型: | ClusterNodeType[] |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-Config
指定組態物件。 這個 Cmdlet 會將腳本動作資訊新增至此參數所指定的物件。
類型: | AzureHDInsightConfig |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-Name
指定文稿動作的名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-Parameters
指定文稿動作所需的參數。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Profile
指定此 Cmdlet 從中讀取的 Azure 設定檔。 如果您未指定設定檔,此 Cmdlet 會從本機預設配置檔讀取。
類型: | AzureSMProfile |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Uri
指定要執行的文稿 URI 位置。
類型: | Uri |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |