你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzureRmHDInsightClusterConfig
创建描述 Azure HDInsight 群集配置的非持久化群集配置对象。
警告
AzureRM PowerShell 模块已自 2024 年 2 月 29 日起正式弃用。 为了确保持续获得支持和更新,建议用户从 AzureRM 迁移到 Az PowerShell 模块。
尽管 AzureRM 模块仍可运行,但不再受到维护或支持,任何继续使用的行为都由用户自行决定并自行承担风险。 有关过渡到 Az 模块的指导,请参阅我们的迁移资源。
语法
New-AzureRmHDInsightClusterConfig
[-DefaultStorageAccountName <String>]
[-DefaultStorageAccountKey <String>]
[-DefaultStorageAccountType <StorageType>]
[-OozieMetastore <AzureHDInsightMetastore>]
[-HiveMetastore <AzureHDInsightMetastore>]
[-HeadNodeSize <String>]
[-WorkerNodeSize <String>]
[-EdgeNodeSize <String>]
[-ZookeeperNodeSize <String>]
[-ClusterType <String>]
[-ClusterTier <Tier>]
[-ObjectId <Guid>]
[-CertificateFileContents <Byte[]>]
[-CertificateFilePath <String>]
[-CertificatePassword <String>]
[-AadTenantId <Guid>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
New-AzureRmHDInsightClusterConfig cmdlet 创建描述 Azure HDInsight 群集配置的非持久化对象。
示例
示例 1:创建群集配置对象
PS C:\># Primary storage account info
PS C:\> $storageAccountResourceGroupName = "Group"
PS C:\> $storageAccountName = "yourstorageacct001"
PS C:\> $storageAccountKey = (Get-AzureRmStorageAccountKey -ResourceGroupName $storageAccountResourceGroupName -Name $storageAccountName)[0].value
PS C:\> $storageContainer = "container002"
# Cluster configuration info
PS C:\> $location = "East US 2"
PS C:\> $clusterResourceGroupName = "Group"
PS C:\> $clusterName = "your-hadoop-002"
PS C:\> $clusterCreds = Get-Credential
# If the cluster's resource group doesn't exist yet, run:
# New-AzureRmResourceGroup -Name $clusterResourceGroupName -Location $location
# Create the cluster
PS C:\> New-AzureRmHDInsightClusterConfig `
| Add-AzureRmHDInsightStorage `
-StorageAccountName "$secondStorageAccountName.blob.core.contoso.net" `
-StorageAccountKey $key2 `
| New-AzureRmHDInsightCluster `
-ClusterType Hadoop `
-OSType Windows `
-ClusterSizeInNodes 4 `
-ResourceGroupName $clusterResourceGroupName `
-ClusterName $clusterName `
-HttpCredential $clusterCreds `
-Location $location `
-DefaultStorageAccountName "$storageAccountName.blob.core.contoso.net" `
-DefaultStorageAccountKey $storageAccountKey `
-DefaultStorageContainer $storageContainer
此命令创建群集配置对象。
参数
-AadTenantId
指定访问 Azure Data Lake Store 时将使用的 Microsoft Entra 租户 ID。
类型: | Guid |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-CertificateFileContents
指定访问 Azure Data Lake Store 时将使用的证书的文件内容。
类型: | Byte[] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-CertificateFilePath
指定将用于作为服务主体进行身份验证的证书的文件路径。 访问 Azure Data Lake Store 时,群集将使用此群集。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-CertificatePassword
指定将用于作为服务主体进行身份验证的证书的密码。 访问 Azure Data Lake Store 时,群集将使用此群集。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ClusterTier
指定 HDInsight 群集层。 此参数的可接受值为:
- Standard
- 高级默认值为 Standard。 高级层只能与 Linux 群集一起使用,并使用它来使用一些新功能。
类型: | Tier |
接受的值: | Standard, Premium |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ClusterType
指定要创建的群集的类型。 此参数的可接受值为:
- Hadoop
- HBase
- 暴风
- Spark
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DefaultProfile
用于与 azure 通信的凭据、帐户、租户和订阅
类型: | IAzureContextContainer |
别名: | AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DefaultStorageAccountKey
指定 HDInsight 群集将使用的默认Azure 存储帐户的帐户密钥。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DefaultStorageAccountName
指定 HDInsight 群集将使用的默认存储帐户的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DefaultStorageAccountType
指定 HDInsight 群集将使用的默认存储帐户的类型。 可能的值为 AzureStorage 和 AzureDataLakeStore。
类型: | StorageType |
接受的值: | AzureStorage, AzureDataLakeStore |
Position: | Named |
默认值: | AzureStorage |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-EdgeNodeSize
指定边缘节点的虚拟机大小。 将 Get-AzureRmVMSize 用于可接受的 VM 大小,并查看 HDInsight 的定价页。 此参数仅适用于 RServer 群集。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-HeadNodeSize
指定头节点的虚拟机大小。 将 Get-AzureRMVMSize 用于可接受的 VM 大小,并查看 HDInsight 的定价页。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-HiveMetastore
指定要存储 Hive 元数据的元存储。 也可以使用 Add-AzureRmHDInsightMetastore cmdlet。
类型: | AzureHDInsightMetastore |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ObjectId
指定表示群集的 Microsoft Entra 服务主体的 Microsoft Entra 对象 ID(GUID)。 访问 Azure Data Lake Store 时,群集将使用此群集。
类型: | Guid |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-OozieMetastore
指定要存储 Oozie 元数据的元存储。 也可以使用 Add-AzureRmHDInsightMetastore cmdlet。
类型: | AzureHDInsightMetastore |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-WorkerNodeSize
指定工作器节点的虚拟机大小。 将 Get-AzureRMVMSize 用于可接受的 VM 大小,并查看 HDInsight 的定价页。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ZookeeperNodeSize
指定 Zookeeper 节点的虚拟机大小。 将 Get-AzureRMVMSize 用于可接受的 VM 大小,并查看 HDInsight 的定价页。 此参数仅适用于 HBase 或 Storm 群集。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输入
None