I am trying to conduct a vector similarity search via vector's raw id (VarChar type).
For example, a vector consists of three fields :
auto_id (int64), userId (VarChar), vectorField (FloatVector).
One possible solution in my mind is like:
- Retrieve the vector field vector1 of user1 by a query;
- Conduct another search operation over vector to retrieve the topK vectors in milvus.
Is is possible that, given userId = "uid1", retrieve the topK vectors by a single query/search