你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzHDInsightClusterAutoscaleConfiguration
创建描述 Azure HDInsight 群集的自动缩放配置的非持久化对象。
语法
New-AzHDInsightClusterAutoscaleConfiguration
-MinWorkerNodeCount <Int32>
-MaxWorkerNodeCount <Int32>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
New-AzHDInsightClusterAutoscaleConfiguration
-TimeZone <String>
-Condition <System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightAutoscaleCondition]>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
cmdlet New-AzHDInsightClusterAutoscaleConfiguration 创建一个非持久化对象,该对象描述 Azure HDInsight 群集的自动缩放配置。
示例
示例 1:创建描述基于负载的自动缩放配置的对象
New-AzHDInsightClusterAutoscaleConfiguration -MinWorkerNodeCount 3 -MaxWorkerNodeCount 5
此命令创建描述基于负载的自动缩放配置的对象。
示例 2:创建描述基于计划的自动缩放配置的对象
# Create an autoscale condition firstly
$condition=New-AzHDInsightClusterAutoscaleScheduleCondition -Day Monday -Time 09:00 -WorkerNodeCount 5
New-AzHDInsightClusterAutoscaleConfiguration -TimeZone ([System.TimeZoneInfo]::Local).Id `
-Condition $condition
此命令创建描述基于计划的自动缩放配置的对象。
参数
-Condition
获取或设置基于计划的自动缩放条件。
类型: | List<T>[AzureHDInsightAutoscaleCondition] |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-MaxWorkerNodeCount
获取或设置基于负载的自动缩放的最大辅助节点计数。
类型: | Int32 |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-MinWorkerNodeCount
获取或设置基于负载的自动缩放的最小辅助节点计数。
类型: | Int32 |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-TimeZone
获取或设置基于计划的自动缩放的时区。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
输入
None