Skip to content

Commit 3c0128a

Browse files
committed
2025-05-01 updates
1 parent 017d701 commit 3c0128a

6 files changed

+12
-13
lines changed

articles/search/search-capacity-planning.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ To increase or decrease the capacity of your service, you have two options:
110110
### Change your pricing tier
111111

112112
> [!NOTE]
113-
> The Azure portal supports changes between Basic and Standard (S1, S2, and S3) tiers. Currently, you can only switch from a lower tier to a higher tier, such as going from Basic to S1. Your region also can't have [capacity constraints on the higher tier](search-region-support.md).
113+
> The Azure portal supports changes between Basic and Standard (S1, S2, and S3) tiers. Currently, you can only use the portal to switch from a lower tier to a higher tier, such as switching from Basic to S1. Your region also can't have [capacity constraints on the higher tier](search-region-support.md).
114114
115115
<!-- You can upgrade or downgrade tiers, provided your current service configuration doesn't exceed the [limits of the target tier](search-limits-quotas-capacity.md). Your region also can't have [capacity constraints on the target tier](search-region-support.md). -->
116116

@@ -164,7 +164,7 @@ The following table lists the causes and solutions for errors that can occur dur
164164
| Error message | Cause | Solution |
165165
|--|--|--|
166166
| "Service update operations aren't allowed at this time because we're processing a previous request." | Another scaling operation is already in progress. | Check the **Overview** page in the Azure portal or use the [Search Management REST API](/rest/api/searchmanagement/services/get), [Azure PowerShell](search-manage-powershell.md#get-search-service-information), or [Azure CLI](search-manage-azure-cli.md#get-search-service-information) to get the status of your search service. If the status is "Provisioning," wait until it becomes "Succeeded" or "Failed" before trying again. <sup>1, 2</sup> |
167-
| "Failed to scale search service *servicename*. Error: *Object* count *ActualCount* exceeds allowable limit: *MaximumCount*." | Your current service configuration exceeds the limits of the target pricing tier. | Check that your storage usage, vector usage, indexes, indexers, and other objects fit within the lower tier's [service limits](search-limits-quotas-capacity.md). For example, the Basic tier supports up to 15 indexes, so you can't switch from S1 to Basic if you have 16 or more indexes. Adjust your resources before trying again. |
167+
<!-- | "Failed to scale search service *servicename*. Error: *Object* count *ActualCount* exceeds allowable limit: *MaximumCount*." | Your current service configuration exceeds the limits of the target pricing tier. | Check that your storage usage, vector usage, indexes, indexers, and other objects fit within the lower tier's [service limits](search-limits-quotas-capacity.md). For example, the Basic tier supports up to 15 indexes, so you can't switch from S1 to Basic if you have 16 or more indexes. Adjust your resources before trying again. | -->
168168

169169
<sup>1</sup> There's no status for backups, which are internal operations that are unlikely to disrupt a scaling exercise.
170170

articles/search/search-create-service-portal.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,7 @@ The Basic and Standard tiers are the most common for production workloads, but m
140140
:::image type="content" source="media/search-create-service-portal/select-pricing-tier.png" lightbox="media/search-create-service-portal/select-pricing-tier.png" alt-text="Screenshot of the Select Pricing Tier page in the Azure portal." border="true":::
141141

142142
> [!NOTE]
143-
> + After you create your service, you can [switch between Basic and Standard (S1, S2, and S3) tiers](search-capacity-planning.md#change-your-pricing-tier).
144-
> + Services created after April 3, 2024 have larger partitions and higher vector quotas at every billable tier.
143+
> Services created after April 3, 2024 have larger partitions and higher vector quotas at every billable tier.
145144
146145
## Create your service
147146

articles/search/search-howto-managed-identities-data-sources.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To use roles on an outbound connection, first configure your search service to u
2929

3030
## Supported scenarios
3131

32-
Azure AI Search can connect to other Azure resources under its system-assigned or a user-assigned managed identity.
32+
Azure AI Search can connect to other Azure resources under its system-assigned managed identity or a user-assigned managed identity.
3333

3434
+ Search service configuration of a managed identity, whether system-assigned or user-assigned, is generally available.
3535

@@ -100,10 +100,8 @@ For more information, see [Create a search service with a system-assigned manage
100100

101101
### [**REST API**](#tab/rest-sys)
102102

103-
Use [Services - Create Or Update (REST API)](/rest/api/searchmanagement/services/create-or-update#searchcreateorupdateservicewithidentity) to formulate the request.
104-
105103
```http
106-
PUT https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice?api-version=2025-05-01 HTTP/1.1
104+
PUT https://management.azure.com/subscriptions/[subscription ID]/resourceGroups/[name of resource group]/providers/Microsoft.Search/searchServices/[name of search service]?api-version=2025-05-01 HTTP/1.1
107105
{
108106
"location": "[region]",
109107
"sku": {
@@ -120,6 +118,8 @@ PUT https://management.azure.com/subscriptions/subid/resourceGroups/rg1/provider
120118
}
121119
```
122120

121+
For more information, see [Services - Create Or Update (REST API)](/rest/api/searchmanagement/services/create-or-update#searchcreateorupdateservicewithidentity).
122+
123123
---
124124

125125
## Create a user-assigned managed identity

articles/search/search-manage-rest.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ If you're not familiar with the REST client for Visual Studio Code, this section
8989

9090
```http
9191
### List search services
92-
GET https://management.azure.com/subscriptions/{{subscription-id}}/providers/Microsoft.Search/searchServices?api-version=2025-05-01
92+
GET https://management.azure.com/subscriptions/{{subscription-id}}/providers/Microsoft.Search/searchServices?api-version=2025-05-01 HTTP/1.1
9393
Content-type: application/json
9494
Authorization: Bearer {{token}}
9595
```
@@ -168,7 +168,7 @@ If you need more or less capacity, you can [switch to a different pricing tier](
168168
@resource-group = PUT-YOUR-RESOURCE-GROUP-NAME-HERE
169169
@search-service = PUT-YOUR-SEARCH-SERVICE-NAME-HERE
170170
171-
PATCH https://management.azure.com/subscriptions/{{subscription-id}}/resourceGroups/{{resource-group}}/providers/Microsoft.Search/searchServices/{{search-service}}?api-version=2025-05-01 HTTP/1.1
171+
PATCH https://management.azure.com/subscriptions/{{subscription-id}}/resourceGroups/{{resource-group}}/providers/Microsoft.Search/searchServices/{{search-service}}?api-version=2025-05-01 HTTP/1.1
172172
Content-type: application/json
173173
Authorization: Bearer {{token}}
174174
@@ -181,7 +181,7 @@ PATCH https://management.azure.com/subscriptions/{{subscription-id}}/resourceGro
181181

182182
## Create an S3HD service
183183

184-
To create an [S3HD](search-sku-tier.md#tier-descriptions) service, set `sku.name` to `standard3` and `properties.hostingMode` to `HighDensity`.
184+
To create an [S3HD](search-sku-tier.md#tier-descriptions) service, use a combination of `sku` and `hostingMode` properties. Set `sku` to `standard3` and "hostingMode" to `HighDensity`.
185185

186186
```http
187187
### Create an S3HD service

articles/search/semantic-how-to-enable-disable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The free plan is capped at 1,000 queries per month. After the first 1,000 querie
4242

4343
### [**REST**](#tab/enable-rest)
4444

45-
To enable semantic ranker, you can use [Services - Create Or Update (REST API)](/rest/api/searchmanagement/services/create-or-update?view=rest-searchmanagement-2025-05-01&tabs=HTTP#searchsemanticsearch).
45+
To enable semantic ranker, you can use [Services - Create Or Update (REST API)](/rest/api/searchmanagement/services/create-or-update?view=rest-searchmanagement-2025-05-01&tabs=HTTP&preserve-view=true#searchsemanticsearch).
4646

4747
Management REST API calls are authenticated through Microsoft Entra ID. For instructions on how to authenticate, see [Manage your Azure AI Search service with REST APIs](search-manage-rest.md).
4848

articles/search/whats-new.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Learn about the latest updates to Azure AI Search functionality, docs, and sampl
2424

2525
| Item | Type | Description |
2626
|-----------------------------|------|--------------|
27-
| [Search Management 2025-05-01](/rest/api/searchmanagement/operation-groups?view=rest-searchmanagement-2025-05-01) | REST | Stable release of the REST APIs for the control plane operations described in this table. For migration guidance, see [Upgrade to the latest REST API in Azure AI Search](search-api-migration.md). |
27+
| [Search Management 2025-05-01](/rest/api/searchmanagement/operation-groups?view=rest-searchmanagement-2025-05-01&preserve-view=true) | REST | Stable release of the REST APIs for the control plane operations described in this table. For migration guidance, see [Upgrade to the latest REST API in Azure AI Search](search-api-migration.md). |
2828
| [Service upgrade](search-how-to-upgrade.md) | Service | Now generally available through [Upgrade Service (REST API)](/rest/api/searchmanagement/services/upgrade?view=rest-searchmanagement-2025-05-01&preserve-view=true) and the Azure portal. |
2929
| [Pricing tier change](search-capacity-planning.md#change-your-pricing-tier) | Service | Now generally available through the `sku` property in [Update Service (REST API)](/rest/api/searchmanagement/services/update?view=rest-searchmanagement-2025-05-01&preserve-view=true) and the Azure portal. |
3030
| [User-assigned managed identity](search-howto-managed-identities-data-sources.md) | Security | Now generally available through the `identity` property in [Update Service (REST API)](/rest/api/searchmanagement/services/update?view=rest-searchmanagement-2025-05-01&preserve-view=true) and the Azure portal. |

0 commit comments

Comments
 (0)