Search index update SLA minimum replicas#
Reliability · AI Search · Rule · 2021_06 · Important
Use a minimum of 3 replicas to receive an SLA for query and index updates.
Description#
AI Search (Previously known as Cognitive Search) services support indexing and querying. Indexing is the process of loading content into the service to make it searchable. Querying is the process where a client searches for content by sending queries to the index.
AI Search supports a configurable number of replicas. Having multiple replicas allows queries and index updates to load balance across multiple replicas.
To receive a Service Level Agreement (SLA) for Search index updates a minimum of 3 replicas is required.
Recommendation#
Consider increasing the number of replicas to a minimum of 3 to receive an SLA on index update requests.
Examples#
Configure with Azure template#
To deploy AI Search services that pass this rule:
- Set the
properties.replicaCount
property to a minimum of3
.
For example:
{
"type": "Microsoft.Search/searchServices",
"apiVersion": "2022-09-01",
"name": "[parameters('name')]",
"location": "[parameters('location')]",
"identity": {
"type": "SystemAssigned"
},
"sku": {
"name": "standard"
},
"properties": {
"replicaCount": 3,
"partitionCount": 1,
"hostingMode": "default"
}
}
Configure with Bicep#
To deploy AI Search services that pass this rule:
- Set the
properties.replicaCount
property to a minimum of3
.
For example:
resource search 'Microsoft.Search/searchServices@2022-09-01' = {
name: name
location: location
identity: {
type: 'SystemAssigned'
}
sku: {
name: 'standard'
}
properties: {
replicaCount: 3
partitionCount: 1
hostingMode: 'default'
}
}
Configure with Azure Verified Modules
A pre-validated module supported by Microsoft is available from the Azure Bicep public registry. To reference the module, please use the following syntax:
To use the latest version:
Links#
- RE:06 Data partitioning
- Resiliency checklist for specific Azure services
- SLA for Azure AI Search
- Azure deployment reference