ערוך

שתף באמצעות


Preview features in Azure AI Search

This article identifies all data plane and control plane features in public preview. This list is helpful for checking feature status. It also provides usage guidance and reminders to always upgrade to newer preview API versions as they roll out.

Preview API versions are cumulative and roll up to newer Preview versions. We recommend always using the latest preview APIs for full access to all preview features.

Preview features are removed from this list if they're retired or transition to general availability. For announcements regarding general availability and retirement, see Service Updates or What's New.

Data plane preview features

Feature                         Category Description Availability
Scalar quantization Index Compress vector index size in memory and on disk using built-in scalar quantization. Create or Update Index (preview) to add a compressions section to a vector profile.
Narrow data types Index Assign a smaller data type on vector fields, assuming incoming data is of that data type. Create or Update Index (preview) to specify a vector field definition. Binary vector support is added in 2024-05-01-preview.
stored property Index Boolean that reduces storage of vector indexes by not storing retrievable vectors. Create or Update Index (preview) to set stored on a vector field.
Vectorizers Queries Text-to-vector conversion during query execution. Create or Update Index (preview) to define a vectorizer. Search POST (preview) for vectorQueries. Vectorizers should be paired with an equivalent skill that supports integrated vectorization during indexing. Skills used for embeddings during indexing include AzureOpenAIEmbedding, Azure AI Vision multimodal, AML for models in the Azure AI Studio model catalog. There are vectorizers that correspond to each one of these embedding skills. Always use the same embedding model for both queries and indexing.
Integrated vectorization Index, skillset Skills-driven data chunking and embedding during indexing. Create or Update Skillset (preview) for AzureOpenAIEmbedding skill and the data chunking properties of the Text Split skill.
Import and vectorize data Azure portal A wizard that creates a full indexing pipeline that includes data chunking and vectorization. The wizard creates all of the objects and configuration settings. Available on all search services, in all regions.
AzureOpenAIEmbedding skill Applied AI (skills) A new skill type that calls Azure OpenAI embedding model to generate embeddings during queries and indexing. Create or Update Skillset (preview). Also available in the portal through the Import and vectorize data wizard.
Azure AI Vision multimodal embedding skill Applied AI (skills) A new skill type that calls Azure AI Vision multimodal API to generate embeddings for text or images during indexing. Create or Update Skillset (preview).
Text Split skill Applied AI (skills) Text Split has two new chunking-related properties in preview: maximumPagesToTake, pageOverlapLength. Create or Update Skillset (preview) adds support for the preview properties. These properties are also used in the portal through the Import and vectorize data wizard.
Azure Machine Learning (AML) skill Applied AI (skills) AML skill integrates an inferencing endpoint from Azure Machine Learning. Create or Update Skillset (preview). In previous preview APIs, it supports connections to deployed custom models in an AML workspace. Starting in the 2024-05-01-preview, you can use this skill in workflows that connect to embedding models in the Azure AI Studio model catalog. It's also available in the portal, in skillset design, assuming Azure AI Search and Azure Machine Learning services are deployed in the same subscription.
Incremental enrichment Applied AI (skills) Adds caching to an enrichment pipeline, allowing you to reuse existing output if a targeted modification, such as an update to a skillset or another object, doesn't change the content. Caching applies only to enriched documents produced by a skillset. Create or Update Indexer (preview).
Index projections Applied AI (skills) A component of a skillset definition that defines the shape of a secondary index, supporting a one-to-many index pattern, where content from an enrichment pipeline can target multiple indexes. Create or Update Skillset (preview). Also available in the portal through the Import and vectorize data wizard.
OneLake files indexer Indexer data source New data source for extracting searchable data and metadata data from a lakehouse on top of OneLake Create or Update Data Source (preview).
Azure Files indexer Indexer data source New data source for indexer-based indexing from Azure Files Create or Update Data Source (preview).
SharePoint Online indexer Indexer data source New data source for indexer-based indexing of SharePoint content. Sign up to enable the feature. Create or Update Data Source (preview) or the Azure portal.
MySQL indexer Indexer data source New data source for indexer-based indexing of Azure MySQL data sources. Sign up to enable the feature. Create or Update Data Source (preview), .NET SDK 11.2.1, and Azure portal.
Azure Cosmos DB for MongoDB indexer Indexer data source New data source for indexer-based indexing through the MongoDB APIs in Azure Cosmos DB. Sign up to enable the feature. Create or Update Data Source (preview) or the Azure portal.
Azure Cosmos DB for Apache Gremlin indexer Indexer data source New data source for indexer-based indexing through the Apache Gremlin APIs in Azure Cosmos DB. Sign up to enable the feature. Create or Update Data Source (preview).
Native blob soft delete Indexer data source Applies to the Azure Blob Storage indexer. Recognizes blobs that are in a soft-deleted state, and removes the corresponding search document during indexing. Create or Update Data Source (preview).
Reset Documents Indexer Reprocesses individually selected search documents in indexer workloads. Reset Documents (preview).
speller Query Optional spelling correction on query term inputs for simple, full, and semantic queries. Search Documents (preview).
Normalizers Query Normalizers provide simple text preprocessing: consistent casing, accent removal, and ASCII folding, without invoking the full text analysis chain. Search Documents (preview).
featuresMode parameter Relevance (scoring) Relevance score expansion to include details: per field similarity score, per field term frequency, and per field number of unique tokens matched. You can consume these data points in custom scoring solutions. Search Documents (preview).
moreLikeThis Query Finds documents that are relevant to a specific document. This feature has been in earlier previews. Search Documents (preview).

Control plane preview features

Feature                         Category Description Availability
Search service under a user-assigned managed identity Service Configures a search service to use a previously created user-assigned managed identity. Services - Update, 2021-04-01-preview or the latest preview version. We recommend using the latest preview version.

Preview features in Azure SDKs

Each Azure SDK team releases beta packages on their own timeline. Check the change log for mentions of new features in beta packages:

Using preview features

Experimental features are available through the preview REST API first, followed by Azure portal, and then the Azure SDKs.

The following statements apply to preview features:

  • Preview features are available under Supplemental Terms of Use, without a service level agreement.
  • Preview features might undergo breaking changes if a redesign is required.
  • Sometimes preview features don't make it into a GA release.

If you write code against a preview API, you should prepare to upgrade that code to newer API versions when they roll out. We maintain an Upgrade REST APIs document to make that step easier.

How to call a preview REST API

Preview REST APIs are accessed through the api-version parameter on the URI. Older previews are still operational but become stale over time and aren't updated with new features or bug fixes.

For data plane operation on content, 2024-05-01-preview is the most recent preview version. The following example shows the syntax for Indexes GET (preview):

GET {endpoint}/indexes('{indexName}')?api-version=2024-05-01-Preview

For management operations on the search service, 2024-06-01-preview is the most recent preview version. The following example shows the syntax for Update Service 2024-06-01-preview version.

PATCH https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice?api-version=2024-06-01-preview

{
  "tags": {
    "app-name": "My e-commerce app",
    "new-tag": "Adding a new tag"
  },
  "properties": {
    "replicaCount": 2
  }
}

See also