Skip to content

Commit c5ee934

Browse files
minor changes
1 parent 65dac58 commit c5ee934

File tree

1 file changed

+23
-18
lines changed

1 file changed

+23
-18
lines changed

articles/backup/use-archive-tier-support.md

Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -379,26 +379,30 @@ To create and configure a policy, run the following cmdlets:
379379

380380
You can now configure Smart Tiering to move recovery points to Vault-archive and retain them using the backup policy. To do so, see the following section:
381381

382+
>[!Note]
383+
>After you configure Smart Tiering, it is automatically enabled to move the recovery points to Vault-archive.
384+
382385
#### Tier recommended recovery points for Azure Virtual Machines
383386

384387
To tier all recommended recovery points to Vault-archive, run the following cmdlet:
385388

386389
```azurepowershell
387390
$pol = New-AzRecoveryServicesBackupProtectionPolicy -Name TestPolicy -WorkloadType AzureVM -BackupManagementType AzureVM -RetentionPolicy $retPol -SchedulePolicy $schPol -VaultId $vault.ID -MoveToArchiveTier $true -TieringMode TierRecommended
388391
```
392+
389393
[Learn more](archive-tier-support.md#archive-recommendations-only-for-azure-virtual-machines) about archive recommendations for Azure VMs.
390394

391-
If the policy doesn't match the Vault-Archive criteria, the following error appears:
395+
If the policy doesn't match the Vault-archive criteria, the following error appears:
392396

393-
```error
397+
```Output
394398
New-AzRecoveryServicesBackupProtectionPolicy: TierAfterDuration needs to be >= 3 months, at least one of monthly or yearly retention should be >= (TierAfterDuration + 6) months
395399
```
396400
>[!Note]
397-
>Tier recommended is supported for Azure Virtual Machines only, and not for SQL Server in Azure Virtual Machines.
401+
>*Tier recommended* is supported for Azure Virtual Machines, and not for SQL Server in Azure Virtual Machines.
398402
399403
#### Tier all eligible Azure Virtual Machines backup item
400404

401-
To tier all your eligible recovery points to Vault-archive, specify the number of months after which you want to move the recovery points and run the following cmdlet:
405+
To tier all eligible Azure VM recovery points to Vault-archive, specify the number of months after which you want to move the recovery points and run the following cmdlet:
402406

403407
```azurepowershell
404408
$pol = New-AzRecoveryServicesBackupProtectionPolicy -Name hiagaVMArchiveTierAfter -WorkloadType AzureVM -BackupManagementType AzureVM -RetentionPolicy $retPol -SchedulePolicy $schPol -VaultId $vault.ID -MoveToArchiveTier $true -TieringMode TierAllEligible -TierAfterDuration 3 -TierAfterDurationType Months
@@ -409,19 +413,20 @@ $pol = New-AzRecoveryServicesBackupProtectionPolicy -Name hiagaVMArchiveTierAfte
409413
>- This can increase your overall costs.
410414
411415

412-
#### Tier all eligible for SQL Server in Azure VM backup item
413-
414-
This tier all your eligible recovery points to Vault-archive, specify the number of days after which you want to move your eligible recovery points and run the following cmdlet:
416+
#### Tier all eligible SQL Server in Azure VM backup item
415417

416-
The number of days ranges from 45 to (Retention – 180 ) days.
418+
To tier all eligible SQL Server in Azure VM recovery points to Vault-archive, specify the number of days after which you want to move the recovery points and run the following cmdlet:
417419

418420
```azurepowershell
419421
$pol = New-AzRecoveryServicesBackupProtectionPolicy -Name SQLArchivePolicy -WorkloadType MSSQL -BackupManagementType AzureWorkload -RetentionPolicy $retPol -SchedulePolicy $schPol -VaultId $vault.ID -MoveToArchiveTier $true -TieringMode TierAllEligible -TierAfterDuration 40 -TierAfterDurationType Days
420422
```
421423

424+
>[!Note]
425+
>The number of days must range from *45* to *(Retention – 180)* days.
426+
422427
If the policy isn't eligible for Vault-archive, the following error appears:
423428

424-
```error
429+
```Output
425430
New-AzRecoveryServicesBackupProtectionPolicy: TierAfterDuration needs to be >= 45 Days, at least one retention policy for full backup (daily / weekly / monthly / yearly) should be >= (TierAfter + 180) days
426431
```
427432
## Modify a policy
@@ -442,19 +447,19 @@ Set-AzRecoveryServicesBackupProtectionPolicy -VaultId $vault.ID -Policy $pol[0]
442447

443448
### Enable Smart Tiering
444449

445-
To enable Smart Tiering after disablement, run the required cmdlet:
450+
To enable Smart Tiering after you disable, run the required cmdlet:
446451

447-
**Azure Virtual Machine**
452+
- **Azure Virtual Machine**
448453

449-
```azurepowershell
450-
Set-AzRecoveryServicesBackupProtectionPolicy -VaultId $vault.ID -Policy $pol[0] -MoveToArchiveTier $true -TieringMode TierRecommended
451-
```
454+
```azurepowershell
455+
Set-AzRecoveryServicesBackupProtectionPolicy -VaultId $vault.ID -Policy $pol[0] -MoveToArchiveTier $true -TieringMode TierRecommended
456+
```
452457

453-
**Azure SQL Server in Azure VMs**
458+
- **Azure SQL Server in Azure VMs**
454459

455-
```azurepowershell
456-
Set-AzRecoveryServicesBackupProtectionPolicy -VaultId $vault.ID -Policy $pol[1] -MoveToArchiveTier $true -TieringMode TierAllEligible -TierAfterDuration 45 -TierAfterDurationType Days
457-
```
460+
```azurepowershell
461+
Set-AzRecoveryServicesBackupProtectionPolicy -VaultId $vault.ID -Policy $pol[1] -MoveToArchiveTier $true -TieringMode TierAllEligible -TierAfterDuration 45 -TierAfterDurationType Days
462+
```
458463

459464
## Next steps
460465

0 commit comments

Comments
 (0)