From other APIs, I would expect parameters go in either the VectorSearchOptions or the SearchOptions. It’s unfortunate that is not demonstrated in the examples.
I have a multi-tenant architecture and I need to implement Vector Search but I need to make sure I only get results that have a specific tenantid.
I assumed combining FTS and VectorSearch would solve this, here is my code that seems not to work:
public async Task<PagedResult<Product>> VectorSearch(string organizationId, float[] embedding, int pageNumber, int pageSize)
{
var vectorQuery = new VectorQuery("embeddings",new VectorQueryOptions().WithNumCandidates((uint)100)).WithVector(embedding);
var vectorSearch = Couchbase.Search.Queries.Vector.VectorSearch.Create(vectorQuery, new VectorSearchOptions(VectorQueryCombination.And));
var searchRequest = SearchRequest.Create(vectorSearch).WithSearchQuery(new TermQuery(organizationId));
var skip = (pageNumber - 1) * pageSize;
var searchOptions = new SearchOptions().Fields("*").Skip(skip).Limit(pageSize);
var searchResult = await _productRepository._scope.SearchAsync("products-vector-index", searchRequest,searchOptions);
var products = MapSearchHitsToProducts(searchResult.Hits);
return new PagedResult<Product>(products, searchResult.MetaData.TotalHits, pageNumber, pageSize);
}
Here is my index definition for OrganizationId that is my tenantid:
So I can see a couple of options, and perhaps @abhinav has other alternatives:
Have each tenant’s in a separate collection (may be the case already), and create a separate FTS index for each.
Wait for support for the FTS prefiltering option to be fully rolled out across SDKs (it’s being actively worked on currently), which will give you the behaviour you’re looking for.
@graham.pople we can recommend users to take advantage of the raw JSON option with any of our SDKs to ship in the search request payload directly - yes? We must have some documentation on how the syntax would look for it.
The raw option is a backdoor essentially (so is not heavily documented), and I wouldn’t recommend it here, as you’ll need to construct the full FTS JSON request. It’s also an untested workaround for this specific case of providing pre-filtering - it may or may not work, and YMMV.
I would really recommend the two approaches above instead.
But if you do want to give it a go, then these resources will get you started:
.NET SDK SearchOptions.Raw()
FTS REST API (for the JSON syntax in broad strokes)