Skip to content

Commit da48eb3

Browse files
authored
Merge pull request #95519 from Nickomang/master
Updated with Raunak feedback
2 parents fa0eb77 + 5885e70 commit da48eb3

File tree

3 files changed

+28
-32
lines changed

3 files changed

+28
-32
lines changed

articles/service-fabric/service-fabric-backuprestoreservice-quickstart-azurecluster.md

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -124,21 +124,6 @@ First you need to enable the _backup and restore service_ in your cluster. Get t
124124

125125
4. Once you have updated your cluster template with the preceding changes, apply them and let the deployment/upgrade complete. Once complete, the _backup and restore service_ starts running in your cluster. The Uri of this service is `fabric:/System/BackupRestoreService` and the service can be located under system service section in the Service Fabric explorer.
126126

127-
### Using Service Fabric Explorer
128-
129-
1. Make sure Advanced Mode is enabled.
130-
131-
![Enable Advanced Mode][2]
132-
133-
2. Select an application and go to action. Click Enable/Update Application Backup.
134-
135-
![Enable Application Backup][3]
136-
137-
3. Finally, select the desired policy and click Enable Backup.
138-
139-
![Select Policy][4]
140-
141-
142127
## Enabling periodic backup for Reliable Stateful service and Reliable Actors
143128
Let's walk through steps to enable periodic backup for Reliable Stateful service and Reliable Actors. These steps assume
144129
- That the cluster is setup using X.509 security with _backup and restore service_.
@@ -222,6 +207,17 @@ $url = "https://mysfcluster.southcentralus.cloudapp.azure.com:19080/Applications
222207
Invoke-WebRequest -Uri $url -Method Post -Body $body -ContentType 'application/json' -CertificateThumbprint '1b7ebe2174649c45474a4819dafae956712c31d3'
223208
```
224209

210+
#### Using Service Fabric Explorer
211+
212+
1. Select an application and go to action. Click Enable/Update Application Backup.
213+
214+
![Enable Application Backup][3]
215+
216+
2. Finally, select the desired policy and click Enable Backup.
217+
218+
![Select Policy][4]
219+
220+
225221
### Verify that periodic backups are working
226222

227223
After enabling backup at the application level, all partitions belonging to Reliable Stateful services and Reliable Actors under the application will start getting backed-up periodically as per the associated backup policy.
@@ -308,7 +304,6 @@ To view backups in Service Fabric Explorer, navigate to a partition and select t
308304

309305
[0]: ./media/service-fabric-backuprestoreservice/partition-backedup-health-event-azure.png
310306
[1]: ./media/service-fabric-backuprestoreservice/enable-backup-restore-service-with-portal.png
311-
[2]: ./media/service-fabric-backuprestoreservice/advanced-mode.png
312307
[3]: ./media/service-fabric-backuprestoreservice/enable-app-backup.png
313308
[4]: ./media/service-fabric-backuprestoreservice/enable-application-backup.png
314309
[5]: ./media/service-fabric-backuprestoreservice/backup-enumeration.png

articles/service-fabric/service-fabric-backuprestoreservice-quickstart-standalonecluster.md

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -113,19 +113,7 @@ First you need to enable the _backup and restore service_ in your cluster. Get t
113113

114114
4. Once you have updated your cluster configuration file with the preceding changes, apply them and let the deployment/upgrade complete. Once complete, the _backup and restore service_ starts running in your cluster. The Uri of this service is `fabric:/System/BackupRestoreService` and the service can be located under system service section in the Service Fabric explorer.
115115

116-
### Using Service Fabric Explorer
117116

118-
1. Make sure Advanced Mode is enabled.
119-
120-
![Enable Advanced Mode][2]
121-
122-
2. Select an application and go to action. Click Enable/Update Application Backup.
123-
124-
![Enable Application Backup][3]
125-
126-
3. Finally, select the desired policy and click Enable Backup.
127-
128-
![Select Policy][4]
129117

130118
## Enabling periodic backup for Reliable Stateful service and Reliable Actors
131119
Let's walk through steps to enable periodic backup for Reliable Stateful service and Reliable Actors. These steps assume
@@ -204,6 +192,16 @@ $url = "http://localhost:19080/Applications/SampleApp/$/EnableBackup?api-version
204192
Invoke-WebRequest -Uri $url -Method Post -Body $body -ContentType 'application/json'
205193
```
206194

195+
#### Using Service Fabric Explorer
196+
197+
1. Select an application and go to action. Click Enable/Update Application Backup.
198+
199+
![Enable Application Backup][3]
200+
201+
2. Finally, select the desired policy and click Enable Backup.
202+
203+
![Select Policy][4]
204+
207205
### Verify that periodic backups are working
208206

209207
After enabling backup for the application, all partitions belonging to Reliable Stateful services and Reliable Actors under the application will start getting backed-up periodically as per the associated backup policy.
@@ -288,8 +286,6 @@ To view backups in Service Fabric Explorer, navigate to a partition and select t
288286
- [Backup restore REST API reference](https://docs.microsoft.com/rest/api/servicefabric/sfclient-index-backuprestore)
289287

290288
[0]: ./media/service-fabric-backuprestoreservice/partition-backedup-health-event.png
291-
[2]: ./media/service-fabric-backuprestoreservice/advanced-mode.png
292289
[3]: ./media/service-fabric-backuprestoreservice/enable-app-backup.png
293290
[4]: ./media/service-fabric-backuprestoreservice/enable-application-backup.png
294-
[5]: ./media/service-fabric-backuprestoreservice/backup-enumeration.png
295-
291+
[5]: ./media/service-fabric-backuprestoreservice/backup-enumeration.png

articles/service-fabric/service-fabric-visualizing-your-cluster.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,11 @@ Image store viewer is a feature offered if using Native Image Store that allows
125125
![Service Fabric Explorer cluster map][sfx-imagestore]
126126

127127
## Backup and Restore
128-
Service Fabric Explorer offers the ability to interface with [Backup and Restore](./service-fabric-reliable-services-backup-restore.md). The following operations are possible:
128+
Service Fabric Explorer offers the ability to interface with [Backup and Restore](./service-fabric-reliable-services-backup-restore.md). In order to see Backup and Restore features in SFX, advanced mode must be enabled.
129+
130+
![Enable advanced mode][0]
131+
132+
The following operations are possible:
129133

130134
* Create, edit, and delete a Backup Policy.
131135
* Enable and disable Backup for an application, service, or partition.
@@ -147,3 +151,4 @@ For more on the Backup and Restore service, see the [REST API reference](https:/
147151
[sfx-create-app-instance]: ./media/service-fabric-visualizing-your-cluster/sfx-create-app-instance.png
148152
[sfx-eventstore]: ./media/service-fabric-diagnostics-eventstore/eventstore.png
149153
[sfx-imagestore]: ./media/service-fabric-visualizing-your-cluster/sfx-image-store.png
154+
[0]: ./media/service-fabric-backuprestoreservice/advanced-mode.png

0 commit comments

Comments
 (0)