Which of the following statements correctly describes how Azure Database for MySQL provides high availability?
Think about how Azure ensures your database stays available without manual intervention.
Azure Database for MySQL provides high availability by automatically creating a standby server in the same region. It uses synchronous replication to keep data in sync and failover happens automatically if the primary server fails.
You want to allow your on-premises application to connect to your Azure Database for MySQL server. Which configuration step is necessary?
Think about how Azure controls which IP addresses can reach your database server.
Azure Database for MySQL uses firewall rules to restrict access. To allow your on-premises app, you must add its public IP address to the server's firewall rules.
You have a web app with heavy read traffic and want to improve read performance using Azure Database for MySQL. Which architecture best supports this?
Consider how Azure Database for MySQL supports scaling reads without affecting writes.
Azure Database for MySQL supports read replicas that asynchronously replicate data from the primary server. Multiple read replicas can handle read traffic, improving performance.
Which option correctly describes how Azure Database for MySQL protects data at rest?
Think about Azure's default encryption practices for managed database services.
Azure Database for MySQL automatically encrypts data at rest using Azure Storage Service Encryption with Microsoft-managed keys, providing built-in protection without extra setup.
Your company requires backups to be retained for 35 days, but Azure Database for MySQL allows a maximum retention of 35 days. You want to ensure backups are available beyond this period. What is the best approach?
Consider Azure's backup retention limits and how to keep backups longer than allowed by default.
Azure Database for MySQL supports up to 35 days of backup retention. To keep backups longer, you should export backups regularly to Azure Blob Storage or another storage solution.