An organization is designing a relational data storage solution for a new patient scheduling portal. The database tier must support the following requirements:
* Run on a single database using a serverless compute model that automatically scales compute resources based on workload demand.
* Automatically pause the database during periods of inactivity to minimize costs.
* Ensure that database backups are resilient against a primary datacenter outage.
Which deployment option should you recommend?
- AAzure SQL Database serverless with Locally Redundant Storage (LRS) backup redundancy
- Azure SQL Database serverless with Zone-Redundant Storage (ZRS) backup redundancyAnswer
- CAzure SQL Managed Instance with Locally Redundant Storage (LRS) backup redundancy
- DSQL Server on Azure Virtual Machines using Standard HDD for transaction logs
Answer
Azure SQL Database serverless with Zone-Redundant Storage (ZRS) backup redundancy
The correct option is the one specifying Azure SQL Database serverless with Zone-Redundant Storage (ZRS) backup redundancy. Azure SQL Database serverless automatically scales compute for single databases and includes an auto-pause feature to optimize costs during inactive periods. Selecting ZRS replication for database backups ensures that the data is replicated across different availability zones, meeting the requirement to remain resilient against a primary datacenter outage.
Step-by-Step Solution
Key Concept
Selecting appropriate Azure SQL service tiers and storage redundancy configurations based on workload patterns and disaster recovery requirements.