你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Add-AzureHDInsightScriptAction

添加 HDInsight 脚本操作。

注意

本文档中引用的 cmdlet 用于管理使用 Azure Service Manager (ASM) API 的旧 Azure 资源。 创建新的资源时,不建议使用此旧版 PowerShell 模块,因为 ASM 计划停用。 有关详细信息,请参阅 Azure Service Manager 停用

Az PowerShell 模块是推荐的 PowerShell 模块,用于使用 PowerShell 管理 Azure 资源管理器 (ARM) 资源。

语法

Add-AzureHDInsightScriptAction
   -Config <AzureHDInsightConfig>
   -Name <String>
   -ClusterRoleCollection <ClusterNodeType[]>
   -Uri <Uri>
   [-Parameters <String>]
   [-Profile <AzureSMProfile>]
   [<CommonParameters>]

说明

此版本的 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