Implémenter la sauvegarde et la restauration de Reliable Actors
Notes
Microsoft recommande d’utiliser la sauvegarde et la restauration périodiques pour la configuration de la sauvegarde des données des services fiables avec état et de Reliable Actors.
Dans l’exemple suivant, un service d’acteur personnalisé expose une méthode pour sauvegarder des données d’acteur en tirant parti de l’écouteur de communication à distance déjà présent dans ActorService
:
public interface IMyActorService : IService
{
Task BackupActorsAsync();
}
class MyActorService : ActorService, IMyActorService
{
public MyActorService(StatefulServiceContext context, ActorTypeInformation typeInfo, Func<ActorBase> newActor)
: base(context, typeInfo, newActor)
{ }
public Task BackupActorsAsync()
{
return this.BackupAsync(new BackupDescription(PerformBackupAsync));
}
private async Task<bool> PerformBackupAsync(BackupInfo backupInfo, CancellationToken cancellationToken)
{
try
{
// store the contents of backupInfo.Directory
return true;
}
finally
{
Directory.Delete(backupInfo.Directory, recursive: true);
}
}
}
public interface MyActorService extends Service
{
CompletableFuture<?> backupActorsAsync();
}
class MyActorServiceImpl extends ActorService implements MyActorService
{
public MyActorService(StatefulServiceContext context, ActorTypeInformation typeInfo, Func<FabricActorService, ActorId, ActorBase> newActor)
{
super(context, typeInfo, newActor);
}
public CompletableFuture backupActorsAsync()
{
return this.backupAsync(new BackupDescription((backupInfo, cancellationToken) -> performBackupAsync(backupInfo, cancellationToken)));
}
private CompletableFuture<Boolean> performBackupAsync(BackupInfo backupInfo, CancellationToken cancellationToken)
{
try
{
// store the contents of backupInfo.Directory
return true;
}
finally
{
deleteDirectory(backupInfo.Directory)
}
}
void deleteDirectory(File file) {
File[] contents = file.listFiles();
if (contents != null) {
for (File f : contents) {
deleteDirectory(f);
}
}
file.delete();
}
}
Dans cet exemple, IMyActorService
est un contrat de communication à distance qui implémente IService
(C#) et Service
(Java) et est ensuite implémenté par MyActorService
. Suite à l’ajout de ce contrat de communication à distance, vous pouvez rendre les méthodes sur IMyActorService
également disponibles pour un client en créant un proxy de communication à distance via ActorServiceProxy
:
IMyActorService myActorServiceProxy = ActorServiceProxy.Create<IMyActorService>(
new Uri("fabric:/MyApp/MyService"), ActorId.CreateRandom());
await myActorServiceProxy.BackupActorsAsync();
MyActorService myActorServiceProxy = ActorServiceProxy.create(MyActorService.class,
new URI("fabric:/MyApp/MyService"), actorId);
myActorServiceProxy.backupActorsAsync();
Pour plus d’informations sur Reliable Actors, consultez les articles suivants :