-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redis-om model randomly returns NotFoundError #648
Comments
The error is observed in 0.3.2 and 0.3.1, previously we were using 0.2.1 without observing this issue. |
How large is the index you are querying, and how large is the result set when you call |
Experiencing the same issue with an index sized at 10K approximately. redis-om version 0.3.1 |
there are 4 keys in that specific model in the DB, approx 10KB in total, the index is 128 Bytes |
The model below, with indexed fields, as pasted below, returns data without issues in 13 cases and fails 2, running the same 15 unit tests core function to retrieve the object from Redis. In to cases, however, it fails to pull data with no apparent reason; The workaround added to find ALL entries when catching exception works, but the same behavior is observed in multiple other places with different models, all related to the same query.
The environmental variables and the name parameter are the same for all tests, but it only fails on 2 runs of the same function.
It also fails to find the object in related Python debugger console attached at breakpoint.
Model definition:
Lookup function
The text was updated successfully, but these errors were encountered: