Set-VBRAdvancedLatencyOptions
Short Description
Modifies latency settings for a specific datastore.
Product Edition: Enterprise Plus, Veeam Universal License
Syntax
|
Set-VBRAdvancedLatencyOptions -Options <VBRAdvancedLatencyOptions> [-LatencyLimitMs <Int32>] [-ThrottlingIOLimitMs <Int32>] [<CommonParameters>] |
Detailed Description
This cmdlet modifies latency settings for a specific datastore.
Note |
|
To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values. The parameters that you omit will remain unchanged. |
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
LatencyLimitMs |
Specifies the I/O latency limit at which Veeam Backup & Replication will not assign new tasks that are targeted at the datastore. Default: 20 ms. |
|
False |
Named |
False |
|
Options |
Specifies the datastore latency settings that you want to remove.
Accepts the |
|
True |
Named |
True (ByPropertyName, ByValue) |
|
ThrottlingIOLimitMs |
Specifies the I/O latency speed limit. When Veeam Backup & Replication reaches this limit, it will decrease the speed at which it either gets data from a datastore or writes data to it. Default: 30 ms. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRAdvancedLatencyOptions object that returns datastore latency settings.
Examples
Modifying I/O Latency Limit of New Tasks for Datastore
This example shows how to modify the I/O latency limit of new tasks that are targeted at the VMware datastore from 50 ms to 100 ms.
|
$server = Get-VBRServer -Name esx06.tech.local $datastore = Find-VBRViDatastore -Server $server $options = Get-VBRAdvancedLatencyOptions -ViDatastore $datastore -LatencyLimitMs 50 Set-VBRAdvancedLatencyOptions -Options $options -LatencyLimitMs 100 |
Perform the following steps:
- Run the
Get-VBRServerReturns hosts connected to the backup infrastructure. cmdlet. Specify theNameparameter value. Save the result to the$servervariable. - Run the
Find-VBRViDatastoreLooks for VMware datastores. cmdlet. Set the$servervariable as theServerparameter value. Save the result to the$datastorevariable. - Run the
Get-VBRAdvancedLatencyOptionsReturns latency settings for a specific datastore. cmdlet. Set the$datastorevariable as theViDatastoreparameter value. Specify theLatencyLimitMsparameter values. Save the result to the$optionsvariable. - Run the
Set-VBRAdvancedLatencyOptionscmdlet. Set the$optionsvariable as theOptionsparameter value. Specify theLatencyLimitMsparameter value.
Related Commands
Get-VBRServerReturns hosts connected to the backup infrastructure.Find-VBRViDatastoreLooks for VMware datastores.Get-VBRAdvancedLatencyOptionsReturns latency settings for a specific datastore.