Start-VBRScaleOutBackupRepositoryRebalance
Short Description
Starts to rebalance data of scale-out backup repositories.
Applies to
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Start-VBRScaleOutBackupRepositoryRebalance -Repository <VBRScaleOutBackupRepository> [-RunAsync] [-Force] [<CommonParameters>] |
Detailed Description
This cmdlet starts to rebalance data between extents of scale-out backup repositories.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
Repository | Specifies a scale-out backup repository which extents you want to rebalance. | Accepts the VBRScaleOutBackupRepository object. To get this object, run the Get-VBRBackupRepository cmdlet and provide the ScaleOut parameter. | True | Named | True (ByValue, ByPropertyName) |
RunAsync | Defines that the command returns immediately without waiting for the task to complete. | SwitchParameter | False | Named | False |
Force | Defines that the cmdlet will starts to rebalance data between extents without showing warnings in the PowerShell console. | SwitchParameter | False | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
None.
Examples
Starting Scale-Out Repository Rebalance
This example shows how to start to rebalance data between extents of scale-out backup repositories.
$repository = Get-VBRBackupRepository -Name "Veeam Scale-Out Repository" -ScaleOut Start-VBRScaleOutBackupRepositoryRebalance -Repository $repository |
Perform the following steps:
- Run the Get-VBRBackupRepository cmdlet. Specify the Name parameter value. Provide the ScaleOut parameter. Save the result to the $repository variable.
- Run the Start-VBRScaleOutBackupRepositoryRebalance cmdlet. Set the $repository variable as the Repository parameter value.
Related Commands