Hello,
I've asked internally, and Oleg Feoktistov is the master as usual. We agreed that this behavior should be investigated further as it appears that every failed offload, if it is not retried for some reason, keeps adding more into that field, this is not confirmed, so please keep working with Support.
That field can be retrieved using this code, which is unsupported as we are calling some DB classes:
Code: Select all
$backup = Get-VBRBackup -Name 'Backup to SOBR with Azure'
$shadowBackups = $backup.FindShadowCapacityTierCopies()
foreach ($shadowBackup in $shadowBackups)
{
$index = [Veeam.Backup.DBManager.CDBManager]::Instance.BackupArchiveIndex.FindByShadowBackupId($shadowBackup.Id)
$shadowBackup | select Name, @{n='ObjectStorageSizeGB';e={[Math]::Round($index.UsedSize/1GB, 1)}}
}
If you are curious, you can find it as well inside the Database, here - [Backup.Model.BackupArchiveIndices] used_size
But as said, I think Support will investigate and come with a final answer if this is a bug or not.
Thanks! Keep us posted