-
Notifications
You must be signed in to change notification settings - Fork 39
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
Deserialization issue with value size #251
Comments
I think this is fine, you're welcome to make a PR with the change. |
@georgemcz this has now been released in version 7.20.0. |
@runeanielsen Hey, this error has been occurring to me as well. I figured that |
Could be that you are dropping more tokens 😀 |
Can I configure it somehow from the cloud dashboard? |
I am fine with switching it to |
Done. Just forced to do it over web gui, hopefully all is ok |
This has now been released in version 7.21.0. |
Under some circumstances, we receive an exception during multi-search. I found that it is an issue with the extreme number of dropped tokens during the search - it fails when Hit.TextMatchInfo.NumTokensDropped shall contain deserialized json value:
"num_tokens_dropped":18446744073709551615
fromtext_match_info
which clearly does not fit into the int type. It seems that the typesense itself allows there some larger range.
Mitigation - bump the type to long, optionally also for other num_ types, this fix seems to work.
The text was updated successfully, but these errors were encountered: