Azure Proactive Resiliency Library v2
Tools Glossary GitHub GitHub Issues Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

searchServices

Summary

RecommendationImpactCategoryAutomation AvailableIn Azure Advisor
Enable AZ support in AI Search by configuring multiple replicas to your search serviceHighHigh AvailabilityYesNo
Enable Multi Region deployments for AI SearchMediumHigh AvailabilityNoNo

Details


Enable AZ support in AI Search by configuring multiple replicas to your search service

Impact:  High Category:  High Availability

APRL GUID:  b376281d-bfec-4695-8f90-9a44544fdfa4

Description:

Availability zones are used when adding multiple replicas to your search service. Each replica is assigned to a different zone in the region. If there are more replicas than zones, they are distributed as evenly as possible across the available zones.

Potential Benefits:

High availability
Learn More:
Reliability in Azure AI Search

ARG Query:

Click the Azure Resource Graph tab to view the query

// Azure Resource Graph Query
// Provides a list of all deployments for AI search with less than two replicas
resources
| where type == "microsoft.search/searchservices"
| extend replicaCount = properties['replicaCount']
| where properties['replicaCount'] < 2
| project recommendationId = "b376281d-bfec-4695-8f90-9a44544fdfa4", name, id, param1 = strcat(properties['replicaCount']) , param2 = strcat(location)
| order by id asc