Home > OS >  How to implement Disaster Recovery for Azure Data Factory?
How to implement Disaster Recovery for Azure Data Factory?

Time:10-21

Currently, we are working on Disaster Recovery scenarios for Azure Data Factory. Is there a reference that discusses Disaster Recovery Implementation for Azure Data Factory? Possibly with an example from Terraform.

CodePudding user response:

Unlike Database etc wherein you physically save data, ADF is just a JSON config or code aspect. So ideally, you can export the ARM templates as code backup and/or source control ADF in GIT integration https://learn.microsoft.com/en-us/azure/data-factory/source-control

In case of any regional outage, you can recreate the same ADF with similar configs in another region based on this ARM template and CICD establishment.

Below links can help : https://learn.microsoft.com/en-us/answers/questions/138430/azure-data-factory-failures-and-disaster-recovery.html https://www.linkedin.com/pulse/planning-azure-data-factory-disaster-recovery-arvind-periyasamy

  • Related