-
Notifications
You must be signed in to change notification settings - Fork 994
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
java.lang.UnsupportedOperationException: io.lettuce.core.output.ValueOutput does not support set(long) #3121
Comments
Thanks @wangchengming666 for the report! Now having just one exception would be hard to diagnose the underlying problem. There could be many reasons why this happens. Do you have some way to reproduce it? What were the commands that were sent and were there other issues before that (OOM, connectivity, etc.)? Does it repeat or it only happens once? Does the driver stop working until restart? |
Hello, We encountered this issue as well. Unfortunately, it wasn't reproducible, but we observed that only a single pod was affected, and all errors originated from that pod. When the container reached its maximum memory limit, Kubernetes terminated it due to OOM. Afterward, the application started properly, resolving the issue. We noted that the affected pod had slightly higher memory usage than other replicas from its start time (though the importance of this is unclear). |
Unfortunately, I cannot reproduce this issue because it occurred during the program's runtime, suddenly appeared, and persisted for a while. After restarting, it was resolved. |
This is quite likely the issue described in #3132 |
Out-of-sync issues could appear when some major error occurs (e.g. OOM or some other unhandled error while decoding the server response). In this case the event loop would skip processing this response and would attempt to map the next response to the same command, leading to this out-of-sync issue. It could also manifest with wrong response contents. Overall the solution in #3132 should reduce the occurrence of such issues, but ideally please record and stack traces that precede the out-of-sync so we can better identify the root cause. I will close this ticket as it is not actionable without more data. If you analyse the logs and find the issue that lead to the out-of-sync please reopen and include it. |
error message as blow
when search this problem in issue lists, there have been similar issues in the past.
The text was updated successfully, but these errors were encountered: