New-SCStorageQoSPolicy
在一个或多个存储文件服务器上创建存储 QoS 策略。
语法
New-SCStorageQoSPolicy
[-VMMServer <ServerConnection>]
-Name <String>
[-Description <String>]
-PolicyType <StorageQoSPolicyType>
[-IOPSNormalizationSizeKB <UInt32>]
[-IOPSMaximum <UInt64>]
[-IOPSMinimum <UInt64>]
[-BandwidthLimitMBPS <UInt64>]
[-StorageFileServer <StorageFileServer[]>]
[-StorageArray <StorageArray[]>]
[-RunAsynchronously]
[-PROTipID <Guid>]
[-JobVariable <String>]
[<CommonParameters>]
说明
New-SCStorageQoSPolicy cmdlet 在一个或多个存储文件服务器上创建存储服务质量(QoS)策略。
示例
示例 1:为单个文件服务器创建具有最大 IOPS 设置的多实例存储 QoS 策略
PS C:\> $FileServersToAdd = @()
PS C:\> $FileServersToAdd += Get-SCStorageFileServer -Name "FileServer01c"
PS C:\> New-SCStorageQoSPolicy -Name "MAXIOPSPolicy" -Description "" -PolicyType "MultiInstance" -IOPSMinimum "0" -IOPSMaximum "10000" -StorageFileServer $FileServersToAdd
此命令为单个文件服务器创建具有最大 IOPS 设置的多实例存储 QoS 策略。
示例 2:为两个文件服务器创建具有最低 IOPS 设置的单实例存储 QoS 策略
PS C:\> $FileServersToAdd = @()
PS C:\> $FileServersToAdd += Get-SCStorageFileServer -Name "FileServer01c"
PS C:\> $FileServersToAdd += Get-SCStorageFileServer -Name "FileServer02c"
New-SCStorageQoSPolicy -Name "MINIOPSPolicy" -Description "" -PolicyType "SingleInstance" -IOPSMinimum "5000" -IOPSMaximum "0" -StorageFileServer $FileServersToAdd
此命令为两个文件服务器创建具有最低 IOPS 设置的单实例存储 QoS 策略。
参数
-BandwidthLimitMBPS
类型: | UInt64 |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Description
指定策略的说明。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-IOPSMaximum
指定最大 IOPS。
类型: | UInt64 |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-IOPSMinimum
指定最小 IOPS。
类型: | UInt64 |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-IOPSNormalizationSizeKB
类型: | UInt32 |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-JobVariable
指定在其中跟踪和存储作业进度的变量。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
指定 Virtual Machine Manager (VMM) 对象的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-PolicyType
指定 QoS 策略类型。 此参数的可接受值为:
- SingleInstance
- MultiInstance
类型: | StorageQoSPolicyType |
接受的值: | Aggregated, Dedicated |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-PROTipID
指定触发此操作的性能和资源优化提示(PRO 提示)的 ID。 此参数允许你审核 PRO 提示。
类型: | Guid |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-RunAsynchronously
指示作业以异步方式运行,以便控件立即返回到命令行界面。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-StorageArray
类型: | StorageArray[] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-StorageFileServer
指定存储文件服务器对象的数组。
类型: | StorageFileServer[] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-VMMServer
指定 VMM 服务器对象。
类型: | ServerConnection |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
输出
StorageQoSPolicy
此 cmdlet 返回 StorageQoSPolicy 对象。