-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: aisearch resiliency recommendations (#627)
- Loading branch information
Showing
5 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
azure-resources/Search/searchServices/kql/b376281d-bfec-4695-8f90-9a44544fdfa4.kql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// 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 |
1 change: 1 addition & 0 deletions
1
azure-resources/Search/searchServices/kql/dff62efe-c3a3-4621-98b3-c877c65cb195.kql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
// under-development |
33 changes: 33 additions & 0 deletions
33
azure-resources/Search/searchServices/recommendations.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
- description: Enable AZ support in AI Search by configuring multiple replicas to your search service | ||
aprlGuid: b376281d-bfec-4695-8f90-9a44544fdfa4 | ||
recommendationTypeId: null | ||
recommendationControl: HighAvailability | ||
recommendationImpact: High | ||
recommendationResourceType: Microsoft.Search/searchServices | ||
recommendationMetadataState: Active | ||
longDescription: | | ||
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. | ||
potentialBenefits: High availability | ||
pgVerified: false | ||
automationAvailable: true | ||
tags: null | ||
learnMoreLink: | ||
- name: Reliability in Azure AI Search | ||
url: "https://learn.microsoft.com/en-us/azure/search/search-reliability#availability-zone-support" | ||
|
||
- description: Enable Multi Region deployments for AI Search | ||
aprlGuid: dff62efe-c3a3-4621-98b3-c877c65cb195 | ||
recommendationTypeId: null | ||
recommendationControl: HighAvailability | ||
recommendationImpact: Medium | ||
recommendationResourceType: Microsoft.Search/searchServices | ||
recommendationMetadataState: Active | ||
longDescription: | | ||
Azure AI Search lacks automatic failover. For continuity and global reach, deploy multiple services in different regions. Sync data via indexers or REST APIs, and manage routing with Azure Traffic Manager. | ||
potentialBenefits: High availability | ||
pgVerified: false | ||
automationAvailable: true | ||
tags: null | ||
learnMoreLink: | ||
- name: Reliability in Azure AI Search | ||
url: "https://learn.microsoft.com/en-us/azure/search/search-reliability#multiple-services-in-separate-geographic-regions" |
1 change: 1 addition & 0 deletions
1
azure-specialized-workloads/ai/kql/a6c8f3f3-199a-4a13-aaf0-eb51eed5352e.kql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
// cannot-be-validated-with-arg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters