I found some threads about setting max tasks on repositories and this is working for me.
Code: Select all
Get-VBRBackupRepository -ScaleOut -Name xxxx | Get-VBRRepositoryExtent | Set-VBRBackupRepository -LimitConcurrentJobs -MaxConcurrentJobs 2
Code: Select all
Get-VBRBackupRepository -ScaleOut -Name xxxx | Get-VBRRepositoryExtent | Set-VBRBackupRepository -LimitConcurrentJobs -MaxConcurrentJobs 2
Code: Select all
>$ex_repo = Get-VBRBackupRepository -Name "Exagrid*"
>$ex_repo.Options
MaxTaskCount : 10
IsTaskCountUnlim : False
MaxArchiveTaskCount : 5
CombinedDataRateLimit : 0
Uncompress : False
OptimizeBlockAlign : False
RemoteAccessLimitation : Everyone
EpEncryptionEnabled : False
MaxPointCount : 2147483647
OneBackupFilePerVm : True
IsAutoDetectAffinityProxies : True
>$ex_repo.Options.MaxTaskCount
10
Code: Select all
>$sobr = Get-VBRBackupRepository -ScaleOut -Name 'SOBR + S3' | Get-VBRRepositoryExtent
>$sobr
ParentId : fa508fbb-c9b7-49b2-980f-8f383fcc139d
Repository : Veeam.Backup.Core.CBackupRepository
Status : Normal
Name : EXAGRID - CIFS
Id : 598340ec-dace-49c7-ace2-c93ef1d27277
>$sobr.Repository.Options
MaxTaskCount : 4
IsTaskCountUnlim : False
MaxArchiveTaskCount : 2
CombinedDataRateLimit : 0
Uncompress : False
OptimizeBlockAlign : False
RemoteAccessLimitation : None
EpEncryptionEnabled : False
MaxPointCount : 2147483647
OneBackupFilePerVm : False
IsAutoDetectAffinityProxies : True
Code: Select all
Get-VBRBackupRepository | Get-Member
Get-VBRBackupRepository | Show-Object
Code: Select all
Get-VBRBackupRepository | select Name, @{n='TaskCount';e={$_.Options.MaxTaskCount}} | Export-Csv -Path C:\repotasks$(Get-Date -Format "yyyy-MM-dd").csv
Users browsing this forum: No registered users and 26 guests