Timeout error: Operation 'Search' timed out after 60 seconds #1037
linogaliana
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I was trying to use a
Qdrantdatabase fromPython. The database is self-hosted on a kubernetes cluster.The operation I want to perform is greedy: from a collection of around 1 million points, I want to retrieve all those with a minimum score_threshold. Positive echoes can therefore be very numerous, but this is a one-time operation. Incidentally, to reduce the volume of info returned from Qdrant, I use the
with_payloadargument to return only the id of documents that meet the criterion.When setting a low limit (e.g. 1000), everything is fine. However, by increasing the limit, I end up with the following error, either with the python client or the REST API:
I've tried increasing the timeout parameter but it doesn't seem to make any difference. Is there a solution ?
Here is my code:
Python client
Direct API call
Beta Was this translation helpful? Give feedback.
All reactions