Skip to content

Commit dcdf964

Browse files
Merge pull request #281328 from HeidiSteen/heidist-uuf
[Azure Search] UUF updates
2 parents 7e01fe2 + e641c85 commit dcdf964

File tree

2 files changed

+17
-12
lines changed

2 files changed

+17
-12
lines changed

articles/search/search-api-migration.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.custom:
1111
- ignite-2023
1212
- build-2024
1313
ms.topic: conceptual
14-
ms.date: 06/24/2024
14+
ms.date: 07/19/2024
1515
---
1616

1717
# Upgrade to the latest REST API in Azure AI Search
@@ -41,6 +41,12 @@ Azure AI Search breaks backward compatibility as a last resort. Upgrade is neces
4141

4242
+ Your code persists API requests and tries to resend them to the new API version. For example, this might happen if your application persists continuation tokens returned from the Search API (for more information, look for `@search.nextPageParameters` in the [Search API Reference](/rest/api/searchservice/Search-Documents)).
4343

44+
## How to upgrade
45+
46+
In your application code that makes direct calls to the REST APIs, modify the `api-version` parameter on the requst header. For more information about structuring a REST call, see [Quickstart: using REST](search-get-started-rest.md#set-up-visual-studio-code).
47+
48+
If you're using an Azure SDK, those packages target specific versions of the REST API. Package updates might coincide with a REST API update, but each SDK is on it's own release schedule that ships independently of Azure AI Search REST API versions. Check the change log of your SDK package to determine whether a package release targets the latest REST API version.
49+
4450
## Breaking change for client code that reads connection information
4551

4652
Effective March 29, 2024 and applicable to all [supported REST APIs](/rest/api/searchservice/search-service-api-versions):

articles/search/search-get-started-portal-import-vectors.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,21 @@ ms.service: cognitive-search
99
ms.custom:
1010
- build-2024
1111
ms.topic: quickstart
12-
ms.date: 06/17/2024
12+
ms.date: 07/19/2024
1313
---
1414

1515
# Quickstart: Vectorize text and images by using the Azure portal
1616

1717
> [!IMPORTANT]
1818
> The **Import and vectorize data** wizard is in public preview under [Supplemental Terms of Use](https://azure.microsoft.com/support/legal/preview-supplemental-terms/). By default, it targets the [2024-05-01-Preview REST API](/rest/api/searchservice/skillsets/create-or-update?view=rest-searchservice-2024-05-01-preview&preserve-view=true).
1919
20-
This quickstart helps you get started with [integrated vectorization (preview)](vector-search-integrated-vectorization.md) by using the **Import and vectorize data** wizard in the Azure portal. This wizard calls a user-specified embedding model to vectorize content during indexing and for queries.
20+
This quickstart helps you get started with [integrated vectorization (preview)](vector-search-integrated-vectorization.md) by using the **Import and vectorize data** wizard in the Azure portal. This wizard chunks your content and calls a user-specified embedding model to vectorize content during indexing and for queries.
2121

22-
## Preview limitations
22+
Key points about the wizard:
2323

24-
+ Source data is either Azure Blob Storage or OneLake files and shortcuts, using the default parsing mode (one search document per blob or file).
25-
+ The index schema is nonconfigurable. Source fields include `content` (chunked and vectorized), `metadata_storage_name` for the title, and `metadata_storage_path` for the document key. This key is represented as `parent_id` in the index.
24+
+ Source data is either Azure Blob Storage or OneLake files and shortcuts.
25+
+ Document parsing mode is nonconfigurable. It's the default parsing mode (one search document per blob or file).
26+
+ Index schema is nonconfigurable. The schema provides vector and nonvector fields for chunked data.
2627
+ Chunking is nonconfigurable. The effective settings are:
2728

2829
```json
@@ -31,25 +32,23 @@ This quickstart helps you get started with [integrated vectorization (preview)](
3132
pageOverlapLength: 500
3233
```
3334

34-
For fewer limitations or more data source options, try a code-base approach. For more information, see the [integrated vectorization sample](https://github.com/Azure/azure-search-vector-samples/blob/main/demo-python/code/integrated-vectorization/azure-search-integrated-vectorization-sample.ipynb).
35+
For fewer limitations or more data source options, try a code-based approach. For more information, see the [integrated vectorization sample](https://github.com/Azure/azure-search-vector-samples/blob/main/demo-python/code/integrated-vectorization/azure-search-integrated-vectorization-sample.ipynb).
3536

3637
## Prerequisites
3738

3839
+ An Azure subscription. [Create one for free](https://azure.microsoft.com/free/).
3940

4041
+ For data, either [Azure Blob Storage](/azure/storage/common/storage-account-overview) or a [OneLake lakehouse](search-how-to-index-onelake-files.md).
4142

42-
Azure Storage must be a standard performance (general-purpose v2) account. Access tiers can be hot, cool, and cold.
43-
44-
Don't use Azure Data Lake Storage Gen2 (a storage account with a hierarchical namespace). This version of the wizard doesn't support Data Lake Storage Gen2.
43+
Azure Storage must be a standard performance (general-purpose v2) account. Access tiers can be hot, cool, and cold. Don't use Azure Data Lake Storage Gen2 (a storage account with a hierarchical namespace). This version of the wizard doesn't support Data Lake Storage Gen2.
4544

46-
+ For vectorization, an [Azure AI services multiservice account](/azure/ai-services/multi-service-resource) or [Azure OpenAI Service](https://aka.ms/oai/access) endpoint with deployments.
45+
+ For vectorization, have an [Azure AI services multiservice account](/azure/ai-services/multi-service-resource) or [Azure OpenAI Service](https://aka.ms/oai/access) endpoint with deployments.
4746

4847
For [multimodal with Azure AI Vision](/azure/ai-services/computer-vision/how-to/image-retrieval), create an Azure AI service in SwedenCentral, EastUS, NorthEurope, WestEurope, WestUS, SoutheastAsia, KoreaCentral, FranceCentral, AustraliaEast, WestUS2, SwitzerlandNorth, or JapanEast. [Check the documentation](/azure/ai-services/computer-vision/how-to/image-retrieval?tabs=csharp) for an updated list.
4948

5049
You can also use an [Azure AI Studio model catalog](/azure/ai-studio/what-is-ai-studio) (and hub and project) with model deployments.
5150

52-
+ For indexing and queries, Azure AI Search. It must be in the same region as your Azure AI service. We recommend the Basic tier or higher.
51+
+ For indexing and queries, have an [Azure AI Search service](search-create-service-portal.md). It must be in the same region as your Azure AI service. We recommend the Basic tier or higher.
5352

5453
+ Role assignments or API keys for connections to embedding models and data sources. This article provides instructions for role-based access control (RBAC).
5554

0 commit comments

Comments
 (0)