How to create a Clone based on a previous state of the Azure Storage Account

217 views Asked by At

I need to create a clone of an Azure storage account based on a particular time (not the latest). The source storage account won't be rollbacked to the particular time and make a clone of it. I need the source storage account be remain as it is and make a clone on a previous state of the storage account.

Example:

I need to make a clone of the storage account A which was at the state of yesterday 1.00pm, to storage account B

enter image description here

  • Point-in-time restore doesn't work here cause I don't want to rollback my source storage account.
1

There are 1 answers

1
Gaurav Mantri On

AFAIK, this feature is not available in Azure Storage. There's a point-in-time restore feature and also there's an object replication feature but both of them will not work in your scenario as per my understanding.

Point-in-time restore will restore the blobs based on a restore point. However it will only restore the blobs in the same account. Restoring blobs in a separate storage account is not supported today. You can learn more about this feature here: https://learn.microsoft.com/en-us/azure/storage/blobs/point-in-time-restore-overview.

Object replication feature will asynchronously copy the blobs from one storage account to another but you cannot specify a restore point. Only thing you could specify is the creation time of the blob. You can learn more about this feature here: https://learn.microsoft.com/en-us/azure/storage/blobs/object-replication-overview.