Assign narrow data types to vector fields in Azure AI Search
An easy way to reduce vector size is to store embeddings in a smaller data format. Most embedding models output 32-bit floating point numbers, but if you quantize your vectors, or if your embedding model supports it natively, output might be float16, int16, or int8, which is significantly smaller than float32. You can accommodate these smaller vector sizes by assigning a narrow data type to a vector field. In the vector index, narrow data types consume less storage.
Data types are assigned to fields in an index definition. You can use the Azure portal, the Search REST APIs, or an Azure SDK package that provides the feature.
Prerequisites
- An embedding model that output small data formats, such as text-embedding-3 or Cohere V3 embedding models.
Supported narrow data types
Review the data types used for vector fields for recommended usage:
Collection(Edm.Single)
32-bit floating point (default)Collection(Edm.Half)
16-bit floating point (narrow)Collection(Edm.Int16)
16-bit signed integer (narrow)Collection(Edm.SByte)
8-bit signed integer (narrow)Collection(Edm.Byte)
8-bit unsigned integer (only allowed with packed binary data types)
From that list, determine which data type is valid for your embedding model's output, or for vectors that undergo custom quantization.
The following table provides links to several embedding models that can use a narrow data type (
Collection(Edm.Half)
) without extra quantization. You can cast from float32 to float16 (usingCollection(Edm.Half)
) with no extra work.Embedding model Native output Assign this type in Azure AI Search text-embedding-ada-002 Float32
Collection(Edm.Single)
orCollection(Edm.Half)
text-embedding-3-small Float32
Collection(Edm.Single)
orCollection(Edm.Half)
text-embedding-3-large Float32
Collection(Edm.Single)
orCollection(Edm.Half)
Cohere V3 embedding models with int8 embedding_type Int8
Collection(Edm.SByte)
Other narrow data types can be used if your model emits embeddings in the smaller data format, or if you have custom quantization that converts vectors to a smaller format.
Make sure you understand the tradeoffs of a narrow data type.
Collection(Edm.Half)
has less information, which results in lower resolution. If your data is homogenous or dense, losing extra detail or nuance could lead to unacceptable results at query time because there's less detail that can be used to distinguish nearby vectors apart.
Assign the data type
Define and build an index. You can use the Azure portal, Create or Update Index (REST API), or an Azure SDK package for this step.
This field definition uses a narrow data type, Collection(Edm.Half)
, that can accept a float32 embedding stored as a float16 value. As is true for all vector fields, dimensions
and vectorSearchProfile
are set. The specifics of the vectorSearchProfile
are immaterial to the datatype.
We recommend that you set retrievable
and stored
to true if you want to visually check the values of the field. On a subsequent rebuild, you can change these properties to false for reduced storage requirements.
{
"name": "nameEmbedding",
"type": "Collection(Edm.Half)",
"searchable": true,
"filterable": false,
"retrievable": true,
"sortable": false,
"facetable": false,
"key": false,
"indexAnalyzer": null,
"searchAnalyzer": null,
"analyzer": null,
"synonymMaps": [],
"dimensions": 1536,
"vectorSearchProfile": "myHnswProfile"
}
Recall that vector fields aren't filterable, sortable, or facetable. They can't be used as keys and don't use analyzers or synonym maps.
Working with a production index
Data types are assigned on new fields when they're created. You can't change the data type of an existing field, and you can't drop a field without rebuilding the index. For established indexes already in production, it's common to work around this issue by creating new fields with the desired revisions and then removing obsolete fields during a planned index rebuild.
Check results
Verify the field content matches the data type. Assuming the vector field is marked as
retrievable
, use Search explorer or Search - POST to return vector field content.To check vector index size, refer to the vector index size column on the Search management > Indexes page in the Azure portal or use the GET Statistics (REST API) or equivalent Azure SDK method to get the size.
Note
The field's data type is used to create the physical data structure. If you want to change a data type later, either drop and rebuild the index, or create a second field with the new definition.