Skip to content
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

.Net: Refactored IsFilterable to IsIndexed for MEVD. #11167

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ private sealed class Glossary
[VectorStoreRecordKey]
public ulong Key { get; set; }

[VectorStoreRecordData(IsFilterable = true)]
[VectorStoreRecordData(IsIndexed = true)]
public string Category { get; set; }

[VectorStoreRecordData]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ private sealed class Glossary<TKey>
[VectorStoreRecordKey]
public TKey Key { get; set; }

[VectorStoreRecordData(IsFilterable = true)]
[VectorStoreRecordData(IsIndexed = true)]
public string Category { get; set; }

[VectorStoreRecordData]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private sealed class Glossary
[VectorStoreRecordKey]
public ulong Key { get; set; }

[VectorStoreRecordData(IsFilterable = true)]
[VectorStoreRecordData(IsIndexed = true)]
public string Category { get; set; }

[VectorStoreRecordData]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public sealed class DataModel
[TextSearchResultLink]
public string Link { get; init; }

[VectorStoreRecordData(IsFilterable = true)]
[VectorStoreRecordData(IsIndexed = true)]
public required string Tag { get; init; }

[VectorStoreRecordVector(1536)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ internal sealed class Glossary
[VectorStoreRecordKey]
public string Key { get; set; }

[VectorStoreRecordData(IsFilterable = true)]
[VectorStoreRecordData(IsIndexed = true)]
public string Category { get; set; }

[VectorStoreRecordData]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void MapKeyFieldCreatesSearchableField()
public void MapFilterableStringDataFieldCreatesSimpleField(bool isFilterable)
{
// Arrange
var dataProperty = new VectorStoreRecordDataProperty("testdata", typeof(string)) { IsFilterable = isFilterable };
var dataProperty = new VectorStoreRecordDataProperty("testdata", typeof(string)) { IsIndexed = isFilterable };
var storagePropertyName = "test_data";

// Act
Expand All @@ -57,7 +57,7 @@ public void MapFilterableStringDataFieldCreatesSimpleField(bool isFilterable)
public void MapFullTextSearchableStringDataFieldCreatesSearchableField(bool isFilterable)
{
// Arrange
var dataProperty = new VectorStoreRecordDataProperty("testdata", typeof(string)) { IsFilterable = isFilterable, IsFullTextSearchable = true };
var dataProperty = new VectorStoreRecordDataProperty("testdata", typeof(string)) { IsIndexed = isFilterable, IsFullTextSearchable = true };
var storagePropertyName = "test_data";

// Act
Expand Down Expand Up @@ -88,7 +88,7 @@ public void MapFullTextSearchableStringDataFieldThrowsForInvalidType()
public void MapDataFieldCreatesSimpleField(bool isFilterable)
{
// Arrange
var dataProperty = new VectorStoreRecordDataProperty("testdata", typeof(int)) { IsFilterable = isFilterable };
var dataProperty = new VectorStoreRecordDataProperty("testdata", typeof(int)) { IsIndexed = isFilterable };
var storagePropertyName = "test_data";

// Act
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ public sealed class MultiPropsModel
public string Key { get; set; } = string.Empty;

[JsonPropertyName("storage_data1")]
[VectorStoreRecordData(IsFilterable = true)]
[VectorStoreRecordData(IsIndexed = true)]
public string Data1 { get; set; } = string.Empty;

[VectorStoreRecordData]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class AzureCosmosDBMongoDBHotelModel(string hotelId)
public string HotelId { get; init; } = hotelId;

/// <summary>A string metadata field.</summary>
[VectorStoreRecordData(IsFilterable = true)]
[VectorStoreRecordData(IsIndexed = true)]
public string? HotelName { get; set; }

/// <summary>An int metadata field.</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ private sealed class TestIndexingModel
[VectorStoreRecordVector(Dimensions: 4, DistanceFunction: DistanceFunction.EuclideanDistance, IndexKind: IndexKind.DiskAnn)]
public ReadOnlyMemory<sbyte>? DescriptionEmbedding4 { get; set; }

[VectorStoreRecordData(IsFilterable = true)]
[VectorStoreRecordData(IsIndexed = true)]
public string? IndexableData1 { get; set; }

[VectorStoreRecordData(IsFullTextSearchable = true)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -553,8 +553,8 @@ private InMemoryVectorStoreRecordCollection<TKey, SinglePropsModel<TKey>> Create
Properties =
[
new VectorStoreRecordKeyProperty("Key", typeof(string)),
new VectorStoreRecordDataProperty("Tags", typeof(List<string>)) { IsFilterable = true },
new VectorStoreRecordDataProperty("Data", typeof(string)) { IsFilterable = true },
new VectorStoreRecordDataProperty("Tags", typeof(List<string>)) { IsIndexed = true },
new VectorStoreRecordDataProperty("Data", typeof(string)) { IsIndexed = true },
new VectorStoreRecordVectorProperty("Vector", typeof(ReadOnlyMemory<float>))
]
};
Expand All @@ -564,10 +564,10 @@ public sealed class SinglePropsModel<TKey>
[VectorStoreRecordKey]
public TKey? Key { get; set; }

[VectorStoreRecordData(IsFilterable = true)]
[VectorStoreRecordData(IsIndexed = true)]
public List<string> Tags { get; set; } = new List<string>();

[VectorStoreRecordData(IsFilterable = true)]
[VectorStoreRecordData(IsIndexed = true)]
public string Data { get; set; } = string.Empty;

[VectorStoreRecordVector]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ public static SimpleField MapDataField(VectorStoreRecordDataProperty dataPropert
throw new InvalidOperationException($"Property {nameof(dataProperty.IsFullTextSearchable)} on {nameof(VectorStoreRecordDataProperty)} '{dataProperty.DataModelPropertyName}' is set to true, but the property type is not a string. The Azure AI Search VectorStore supports {nameof(dataProperty.IsFullTextSearchable)} on string properties only.");
}

return new SearchableField(storagePropertyName) { IsFilterable = dataProperty.IsFilterable };
return new SearchableField(storagePropertyName) { IsFilterable = dataProperty.IsIndexed };
}

return new SimpleField(storagePropertyName, AzureAISearchVectorStoreCollectionCreateMapping.GetSDKFieldDataType(dataProperty.PropertyType)) { IsFilterable = dataProperty.IsFilterable };
return new SimpleField(storagePropertyName, AzureAISearchVectorStoreCollectionCreateMapping.GetSDKFieldDataType(dataProperty.PropertyType)) { IsFilterable = dataProperty.IsIndexed };
}

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public static BsonArray GetFilterableDataIndexes(
// Create separate index for each data property
foreach (var property in dataProperties)
{
if (property.IsFilterable)
if (property.IsIndexed)
{
// Use index name same as data property name with underscore
var dataPropertyName = storagePropertyNames[property.DataModelPropertyName];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ private ContainerProperties GetContainerProperties()
// Process Data properties.
foreach (var property in this._propertyReader.DataProperties)
{
if (property.IsFilterable || property.IsFullTextSearchable)
if (property.IsIndexed || property.IsFullTextSearchable)
{
indexingPolicy.IncludedPaths.Add(new IncludedPath { Path = $"/{this._storagePropertyNames[property.DataModelPropertyName]}/?" });
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static BsonArray GetFilterableDataIndexFields(
// Create separate index for each data property
foreach (var property in dataProperties)
{
if (property.IsFilterable)
if (property.IsIndexed)
{
// Use index name same as data property name with underscore
var dataPropertyName = storagePropertyNames[property.DataModelPropertyName];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ await this.RunOperationAsync(
}

// Add indexes for each of the data properties that require filtering.
var dataProperties = this._propertyReader.DataProperties.Where(x => x.IsFilterable);
var dataProperties = this._propertyReader.DataProperties.Where(x => x.IsIndexed);
foreach (var dataProperty in dataProperties)
{
var storageFieldName = this._propertyReader.GetStoragePropertyName(dataProperty.DataModelPropertyName);
Expand All @@ -194,7 +194,7 @@ await this.RunOperationAsync(
}
else
{
throw new InvalidOperationException($"Property {nameof(VectorStoreRecordDataProperty.IsFilterable)} on {nameof(VectorStoreRecordDataProperty)} '{dataProperty.DataModelPropertyName}' is set to true, but the property type is not supported for filtering. The Qdrant VectorStore supports filtering on {string.Join(", ", QdrantVectorStoreCollectionCreateMapping.s_schemaTypeMap.Keys.Select(x => x.Name))} properties only.");
throw new InvalidOperationException($"Property {nameof(VectorStoreRecordDataProperty.IsIndexed)} on {nameof(VectorStoreRecordDataProperty)} '{dataProperty.DataModelPropertyName}' is set to true, but the property type is not supported for filtering. The Qdrant VectorStore supports filtering on {string.Join(", ", QdrantVectorStoreCollectionCreateMapping.s_schemaTypeMap.Keys.Select(x => x.Name))} properties only.");
}

await this.RunOperationAsync(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ public static Schema MapToSchema(IEnumerable<VectorStoreRecordProperty> properti
}

// Data property.
if (property is VectorStoreRecordDataProperty dataProperty && (dataProperty.IsFilterable || dataProperty.IsFullTextSearchable))
if (property is VectorStoreRecordDataProperty dataProperty && (dataProperty.IsIndexed || dataProperty.IsFullTextSearchable))
{
var storageName = storagePropertyNames[dataProperty.DataModelPropertyName];

if (dataProperty.IsFilterable && dataProperty.IsFullTextSearchable)
if (dataProperty.IsIndexed && dataProperty.IsFullTextSearchable)
{
throw new InvalidOperationException($"Property '{dataProperty.DataModelPropertyName}' has both {nameof(VectorStoreRecordDataProperty.IsFilterable)} and {nameof(VectorStoreRecordDataProperty.IsFullTextSearchable)} set to true, and this is not supported by the Redis VectorStore.");
throw new InvalidOperationException($"Property '{dataProperty.DataModelPropertyName}' has both {nameof(VectorStoreRecordDataProperty.IsIndexed)} and {nameof(VectorStoreRecordDataProperty.IsFullTextSearchable)} set to true, and this is not supported by the Redis VectorStore.");
}

// Add full text search field index.
Expand All @@ -90,7 +90,7 @@ public static Schema MapToSchema(IEnumerable<VectorStoreRecordProperty> properti
}

// Add filter field index.
if (dataProperty.IsFilterable)
if (dataProperty.IsIndexed)
{
if (dataProperty.PropertyType == typeof(string))
{
Expand All @@ -106,7 +106,7 @@ public static Schema MapToSchema(IEnumerable<VectorStoreRecordProperty> properti
}
else
{
throw new InvalidOperationException($"Property '{dataProperty.DataModelPropertyName}' is marked as {nameof(VectorStoreRecordDataProperty.IsFilterable)}, but the property type '{dataProperty.PropertyType}' is not supported. Only string, IEnumerable<string> and numeric properties are supported for filtering by the Redis VectorStore.");
throw new InvalidOperationException($"Property '{dataProperty.DataModelPropertyName}' is marked as {nameof(VectorStoreRecordDataProperty.IsIndexed)}, but the property type '{dataProperty.PropertyType}' is not supported. Only string, IEnumerable<string> and numeric properties are supported for filtering by the Redis VectorStore.");
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ private static void AddParameter(this SqlCommand command, VectorStoreRecordPrope
Type t when t == typeof(long) => "BIGINT",
Type t when t == typeof(Guid) => "UNIQUEIDENTIFIER",
Type t when t == typeof(string) && property is VectorStoreRecordKeyProperty => "NVARCHAR(4000)",
Type t when t == typeof(string) && property is VectorStoreRecordDataProperty { IsFilterable: true } => "NVARCHAR(4000)",
Type t when t == typeof(string) && property is VectorStoreRecordDataProperty { IsIndexed: true } => "NVARCHAR(4000)",
Type t when t == typeof(string) => "NVARCHAR(MAX)",
Type t when t == typeof(byte[]) => "VARBINARY(MAX)",
Type t when t == typeof(bool) => "BIT",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static WeaviateCollectionSchema MapToSchema(
{
Name = storagePropertyNames[property.DataModelPropertyName],
DataType = [MapType(property.PropertyType)],
IndexFilterable = property.IsFilterable,
IndexFilterable = property.IsIndexed,
IndexSearchable = property.IsFullTextSearchable
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class MongoDBHotelModel(string hotelId)
public string HotelId { get; init; } = hotelId;

/// <summary>A string metadata field.</summary>
[VectorStoreRecordData(IsFilterable = true)]
[VectorStoreRecordData(IsIndexed = true)]
public string? HotelName { get; set; }

/// <summary>An int metadata field.</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ public async Task CreatesCollectionForGenericModelAsync()
{
Properties = [
new VectorStoreRecordKeyProperty("HotelId", typeof(int)),
new VectorStoreRecordDataProperty("HotelName", typeof(string)) { IsFilterable = true, IsFullTextSearchable = true },
new VectorStoreRecordDataProperty("HotelCode", typeof(int)) { IsFilterable = true },
new VectorStoreRecordDataProperty("ParkingIncluded", typeof(bool)) { IsFilterable = true, StoragePropertyName = "parking_is_included" },
new VectorStoreRecordDataProperty("HotelRating", typeof(float)) { IsFilterable = true },
new VectorStoreRecordDataProperty("HotelName", typeof(string)) { IsIndexed = true, IsFullTextSearchable = true },
new VectorStoreRecordDataProperty("HotelCode", typeof(int)) { IsIndexed = true },
new VectorStoreRecordDataProperty("ParkingIncluded", typeof(bool)) { IsIndexed = true, StoragePropertyName = "parking_is_included" },
new VectorStoreRecordDataProperty("HotelRating", typeof(float)) { IsIndexed = true },
new VectorStoreRecordDataProperty("Tags", typeof(List<string>)),
new VectorStoreRecordDataProperty("Description", typeof(string)),
new VectorStoreRecordVectorProperty("DescriptionEmbedding", typeof(ReadOnlyMemory<float>?)) { Dimensions = 100, DistanceFunction = DistanceFunction.ManhattanDistance }
Expand Down Expand Up @@ -63,7 +63,7 @@ public void ThrowsForUnsupportedType()
{
Properties = [
new VectorStoreRecordKeyProperty("HotelId", typeof(ulong)),
new VectorStoreRecordDataProperty("HotelName", typeof(string)) { IsFilterable = true, IsFullTextSearchable = true },
new VectorStoreRecordDataProperty("HotelName", typeof(string)) { IsIndexed = true, IsFullTextSearchable = true },
]
};
var options = new PostgresVectorStoreRecordCollectionOptions<VectorStoreGenericDataModel<ulong>>()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -794,8 +794,8 @@ private static VectorStoreRecordDefinition CreateSinglePropsDefinition(Type keyT
Properties =
[
new VectorStoreRecordKeyProperty("Key", keyType),
new VectorStoreRecordDataProperty("OriginalNameData", typeof(string)) { IsFilterable = true, IsFullTextSearchable = true },
new VectorStoreRecordDataProperty("Data", typeof(string)) { IsFilterable = true, StoragePropertyName = "data_storage_name" },
new VectorStoreRecordDataProperty("OriginalNameData", typeof(string)) { IsIndexed = true, IsFullTextSearchable = true },
new VectorStoreRecordDataProperty("Data", typeof(string)) { IsIndexed = true, StoragePropertyName = "data_storage_name" },
new VectorStoreRecordVectorProperty("Vector", typeof(ReadOnlyMemory<float>)) { StoragePropertyName = "vector_storage_name" }
]
};
Expand All @@ -806,11 +806,11 @@ public sealed class SinglePropsModel<T>
[VectorStoreRecordKey]
public required T Key { get; set; }

[VectorStoreRecordData(IsFilterable = true, IsFullTextSearchable = true)]
[VectorStoreRecordData(IsIndexed = true, IsFullTextSearchable = true)]
public string OriginalNameData { get; set; } = string.Empty;

[JsonPropertyName("ignored_data_json_name")]
[VectorStoreRecordData(IsFilterable = true, StoragePropertyName = "data_storage_name")]
[VectorStoreRecordData(IsIndexed = true, StoragePropertyName = "data_storage_name")]
public string Data { get; set; } = string.Empty;

[JsonPropertyName("ignored_vector_json_name")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -627,11 +627,11 @@ public sealed class SinglePropsModel
[VectorStoreRecordKey]
public string Key { get; set; } = string.Empty;

[VectorStoreRecordData(IsFilterable = true)]
[VectorStoreRecordData(IsIndexed = true)]
public string OriginalNameData { get; set; } = string.Empty;

[JsonPropertyName("ignored_data_json_name")]
[VectorStoreRecordData(IsFilterable = true, StoragePropertyName = "data_storage_name")]
[VectorStoreRecordData(IsIndexed = true, StoragePropertyName = "data_storage_name")]
public string Data { get; set; } = string.Empty;

[JsonPropertyName("ignored_vector_json_name")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -624,8 +624,8 @@ private static MultiPropsModel CreateModel(string key, bool withVectors)
Properties =
[
new VectorStoreRecordKeyProperty("Key", typeof(string)),
new VectorStoreRecordDataProperty("Data1", typeof(string)) { IsFilterable = true, StoragePropertyName = "ignored_data1_storage_name" },
new VectorStoreRecordDataProperty("Data2", typeof(string)) { IsFilterable = true },
new VectorStoreRecordDataProperty("Data1", typeof(string)) { IsIndexed = true, StoragePropertyName = "ignored_data1_storage_name" },
new VectorStoreRecordDataProperty("Data2", typeof(string)) { IsIndexed = true },
new VectorStoreRecordVectorProperty("Vector1", typeof(ReadOnlyMemory<float>)) { Dimensions = 4, DistanceFunction = DistanceFunction.CosineDistance, StoragePropertyName = "ignored_vector1_storage_name" },
new VectorStoreRecordVectorProperty("Vector2", typeof(ReadOnlyMemory<float>)) { Dimensions = 4 }
]
Expand All @@ -637,10 +637,10 @@ public sealed class MultiPropsModel
public string Key { get; set; } = string.Empty;

[JsonPropertyName("data1_json_name")]
[VectorStoreRecordData(IsFilterable = true, StoragePropertyName = "ignored_data1_storage_name")]
[VectorStoreRecordData(IsIndexed = true, StoragePropertyName = "ignored_data1_storage_name")]
public string Data1 { get; set; } = string.Empty;

[VectorStoreRecordData(IsFilterable = true)]
[VectorStoreRecordData(IsIndexed = true)]
public string Data2 { get; set; } = string.Empty;

[JsonPropertyName("vector1_json_name")]
Expand Down
Loading