DP-300 Plan and configure a high availability and disaster recovery environment • Set 8
DP-300 Plan and configure a high availability and disaster recovery environment Practice Test 8 — 15 questions with explanations. Free, no signup.
Refer to the exhibit. You have an Azure SQL Database failover group configured with the ARM template snippet shown. You need to ensure that read-only queries are routed to the secondary region when the primary is healthy. What should you modify?
{
"properties": {
"databases": [
"/subscriptions/.../databases/OrdersDB"
],
"partnerServers": [
{
"id": "/subscriptions/.../servers/secondary-server",
"location": "westus"
}
],
"readWriteEndpoint": {
"failoverPolicy": "Automatic",
"failoverGracePeriodMinutes": 60
},
"readOnlyEndpoint": {
"failoverPolicy": "Disabled"
}
},
"type": "Microsoft.Sql/servers/failoverGroups"
}