Skip to content

Commit 76eadfe

Browse files
authored
Merge pull request #214127 from v-amallick/Oct-11-2022-Files
AFS backup - doc updates
2 parents bdf84c2 + c748f40 commit 76eadfe

File tree

2 files changed

+27
-9
lines changed

2 files changed

+27
-9
lines changed

articles/backup/azure-file-share-support-matrix.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Support Matrix for Azure file share backup
33
description: Provides a summary of support settings and limitations when backing up Azure file shares.
44
ms.topic: conceptual
5-
ms.date: 5/07/2020
5+
ms.date: 10/14/2022
66
ms.custom: references_regions
77
author: v-amallick
88
ms.service: backup
@@ -58,8 +58,8 @@ Azure file shares backup is available in all regions, **except** for Germany Cen
5858

5959
| Setting | Limit |
6060
| ------------------------------------------------------------ | ------- |
61-
| Maximum number of restores per day | 10 |
62-
| Maximum number of individual files or folders per restore, in case of ILR (Item level recovery) | 99 |
61+
| Maximum number of restore per day | 10 |
62+
| Maximum number of individual files or folders per restore, if ILR (Item level recovery) | 99 |
6363
| Maximum recommended restore size per restore for large file shares | 15 TiB |
6464

6565
## Retention limits
@@ -68,7 +68,8 @@ Azure file shares backup is available in all regions, **except** for Germany Cen
6868
| ------------------------------------------------------------ | -------- |
6969
| Maximum total recovery points per file share at any point in time | 200 |
7070
| Maximum retention of recovery point created by on-demand backup | 10 years |
71-
| Maximum retention of daily recovery points (snapshots) per file share| 200 days |
71+
| Maximum retention of daily recovery points (snapshots) per file share, if daily frequency | 200 days |
72+
| Maximum retention of daily recovery points (snapshots) per file share, if hourly frequency | Floor (200/number of snapshots according to the schedule)-1 |
7273
| Maximum retention of weekly recovery points (snapshots) per file share | 200 weeks |
7374
| Maximum retention of monthly recovery points (snapshots) per file share | 120 months |
7475
| Maximum retention of yearly recovery points (snapshots) per file share | 10 years |

articles/backup/backup-azure-files-faq.yml

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
metadata:
33
title: Back up Azure Files FAQ
44
description: In this article, discover answers to common questions about how to protect your Azure file shares with the Azure Backup service.
5-
ms.date: 04/05/2022
5+
ms.date: 10/14/2022
66
ms.topic: faq
77
ms.service: backup
88
author: v-amallick
@@ -30,7 +30,7 @@ sections:
3030
- question: |
3131
Why is it recommended to enable lock on the storage account?
3232
answer: |
33-
The current Azure Files backup solution keeps snapshots in the same storage account as the backed-up file share. If the storage account gets deleted, you will lose all your snapshots. To protect your account against accidental deletion, Azure Backup takes a Delete lock on the storage account. It means authorized users can still read and modify a resource, but they can't delete it. The lock also restricts the deletion of any file share under the storage account. Hence, you get protection from the accidental deletion of both the storage account and files shares.
33+
The current Azure Files backup solution keeps snapshots in the same storage account as the backed-up file share. If the storage account gets deleted, you'll lose all your snapshots. To protect your account against accidental deletion, Azure Backup takes a Delete lock on the storage account. It means authorized users can still read and modify a resource, but they can't delete it. The lock also restricts the deletion of any file share under the storage account. Hence, you get protection from the accidental deletion of both the storage account and files shares.
3434
3535
- question: |
3636
Can I protect File Shares connected to a Sync Group in Azure Files Sync?
@@ -64,6 +64,18 @@ sections:
6464
answer: |
6565
You can have up to 200 Snapshots for a file share at any point in time. The limit includes snapshots taken by Azure Backup as defined by your policy. If your backups start failing after reaching the limit, delete On-Demand snapshots for successful future backups.
6666
67+
- question: |
68+
How's the total number of snapshots corresponding to a backup policy configuration calculated?
69+
answer: |
70+
The following table explains the snapshot count as per the backup policy configuration:
71+
72+
| Backup frequency | Retention period | Snapshot count |
73+
| ---------------- | ---------------- | -------------- |
74+
| **Daily** | Add the retention values configured for daily, weekly, monthly, and yearly backups. For example, you configure a backup policy with the following values: <br><br> - Daily retention: 30 days <br> - Weekly retention: 40 weeks <br> - Monthly retention: 4 months <br> - Yearly retention: 6 years | This corresponds to 80 snapshots (30+40+4+6).
75+
| **Hourly** | There's a buffer allocated for any delay in pruning the expired snapshots. For example, you configure a backup policy with: <br><br> - Number of daily snapshots as per your schedule: 6 <br> - Daily retention: 30 days <br> - Monthly retention: 11 months <br> - Yearly retention: 8 years | Considering 1 day buffer for each daily snapshot, the daily retention of 30 days is considered as 31 days for each of the 6 daily snapshots. So, this configuration corresponds to 205 [(6X31)+11+8] snapshots.
76+
77+
78+
6779
- name: Restore
6880
questions:
6981
- question: |
@@ -198,9 +210,9 @@ sections:
198210
199211
**Impact of change**
200212
201-
1. The expiration date of existing daily recovery points will be aligned according to the new daily retention value, that is 10 days. So any daily recovery point older than 10 days will be deleted.
213+
1. The expiration date of existing daily recovery points will be aligned according to the new daily retention value (10 days). So any daily recovery point older than 10 days will be deleted.
202214
203-
2. The expiration date of existing weekly recovery points will be aligned according to the new weekly retention value, that is two weeks. So any weekly recovery point older than two weeks will be deleted.
215+
2. The expiration date of existing weekly recovery points will be aligned according to the new weekly retention value (two weeks). So, any weekly recovery point older than two weeks will be deleted.
204216
205217
3. The monthly recovery points will only be created as part of future backups based on the new policy configuration.
206218
@@ -214,7 +226,7 @@ sections:
214226
answer: |
215227
The **duration** attribute helps to determine the timestamp for last backup of the day.
216228
217-
For example, if the **start time** is “x AM” and **duration** is “y hours”, the backups will be scheduled between “x AM” and (x AM + y hours) based on the **schedule** attribute defined in the policy. This attribute enables you to ensure backups are only triggered during your working hours when there're frequent update operations on file share contents; therefore, taking multiple snapshots will safeguard data from any accidental changes.
229+
For example, if the **start time** is “x AM” and **duration** is “y hours”, the backups will be scheduled between “x AM” and (x AM + y hours) based on the **schedule** attribute defined in the policy. This attribute enables you to ensure backups are only triggered during your working hours when there are frequent update operations on file share contents; so, taking multiple snapshots will safeguard data from any accidental changes.
218230
219231
- question: |
220232
How are the backups scheduled based on the attributes - start time, schedule, and duration?
@@ -287,6 +299,11 @@ sections:
287299
answer: |
288300
No. If you delete a file share containing leased snapshots, the lease won’t be in place when the file share is undeleted.
289301
302+
- question: |
303+
Can I configure different backup policies for file shares in a storage account?
304+
answer: |
305+
Yes, you can protect file shares in a storage account in the same Recovery Services vault with different backup policies.
306+
290307
additionalContent: |
291308
292309
## Next steps

0 commit comments

Comments
 (0)