According to: https://learn.microsoft.com/en-us/azure/cosmos-db/mongodb/vcore/vector-search?WT.mc_id=Portal-Microsoft_Azure_Resources&tabs=diskann there should be possible to use vector search with DiskANN Index with Filtering. There is even an example (that I have followed). Apart from following the example I have also (to my knowledge) followed all pre-requisites (e.g., M40 cluster tier, enabling of DiskANN on the cluster, enabled the "filtering vector search" feature in the "Preview Features" tab on my Azure Subscription).
What works: vector search using DiskANN (which verifies that most things are configures set-up correctly)
What does NOT work: filtering
Again; I have enabled the "filtering vector search" feature in the "Preview Features" tab on my Azure Subscription and verified that it is "registered".
I get the following error message:
pymongo.errors.OperationFailure: $filter is not supported for vector search yet., full error: {'ok': 0.0, 'errmsg': '$filter is not supported for vector search yet.', 'code': 115, 'codeName': 'CommandNotSupported'}
I am little bit confused, given that I have followed the documentation (see link above) which states that filtering is available (in preview).
Can anyone help me with this problem?