You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently migrated my old collection from Qdrant version 1.8.0 to 1.12.0 to enable multitenancy. The migration was done point by point. However, now when I perform a hybrid search on the updated collection, I encounter the same error.
#860
Open
kunalchamoli opened this issue
Nov 29, 2024
· 1 comment
I recently migrated my old collection from Qdrant version 1.8.0 to 1.12.0 to enable multitenancy. The migration was done point by point. However, now when I perform a hybrid search on the updated collection, I encounter the same error.
Which error exactly are you having?
If you're seeing an error Unexpected Response: 404 (Not found) Raw response content: b''
Then most probably you are using methods from qdrant-client which are not available in your version of Qdrant.
In this case, I would ask you to double check qdrant-client and qdrant versions you have.
In order to check Qdrant version from the client side you can use qdrant_client.QdrantClient().info(), and you can check client version via pip3 freeze | grep qdrant-client
If you see Unexpected Response: 400 (Bad request) Raw response content: b'{"status": {"error": Wrong input: Vector params for are not specified in config"}}...
Then in order to help you we would need to see the output of your get_collection(<collection_name>) response
Originally posted by @kunalchamoli in #716 (comment)
The text was updated successfully, but these errors were encountered: