-
Notifications
You must be signed in to change notification settings - Fork 533
VectorIndex Policy[No Release]: Adds Support for QuantizerType in IndexingPolicy #5502
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
microsoft-github-policy-service
merged 9 commits into
master
from
users/aavasthy/vector_quantizertype
Dec 8, 2025
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
fef2f31
Add quantizertype to vector index
aavasthy f1e50b6
Resolve merge conflicts.
aavasthy 446447e
Update reference for QuantizerType
aavasthy 8a2c3c6
Fix comments
aavasthy e789a6c
Update contracts file
aavasthy 2120237
Merge branch 'master' into users/aavasthy/vector_quantizertype
aavasthy 88d500c
Merge branch 'master' into users/aavasthy/vector_quantizertype
aavasthy b2faa3c
Merge branch 'master' into users/aavasthy/vector_quantizertype
aavasthy c869bd8
Merge branch 'master' into users/aavasthy/vector_quantizertype
kundadebdatta File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
33 changes: 33 additions & 0 deletions
33
Microsoft.Azure.Cosmos/src/Resource/Settings/QuantizerType.cs
This file contains hidden or 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 @@ | ||
| //------------------------------------------------------------ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| //------------------------------------------------------------ | ||
| namespace Microsoft.Azure.Cosmos | ||
| { | ||
| using System.Runtime.Serialization; | ||
| using Newtonsoft.Json; | ||
| using Newtonsoft.Json.Converters; | ||
|
|
||
| /// <summary> | ||
| /// Defines the quantizer type of a vector index path specification in the Azure Cosmos DB service. | ||
| /// </summary> | ||
| [JsonConverter(typeof(StringEnumConverter))] | ||
| #if PREVIEW | ||
| public | ||
| #else | ||
| internal | ||
| #endif | ||
| enum QuantizerType | ||
| { | ||
| /// <summary> | ||
| /// Represents a product quantizer type. | ||
| /// </summary> | ||
| [EnumMember(Value = "product")] | ||
|
aavasthy marked this conversation as resolved.
|
||
| Product, | ||
|
|
||
| /// <summary> | ||
| /// Represents a spherical quantizer type. | ||
| /// </summary> | ||
| [EnumMember(Value = "spherical")] | ||
| Spherical | ||
| } | ||
| } | ||
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.