-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
RedisClusterException: Timed out attempting to find data in the correct node! #888
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
Comments
This can happen if it is actually timing out. Have you tried increasing the timeout? |
Hi @michael-grunder |
Feel free to send an update if increasing the timeout doesn't help! |
Re-open please. We're having the same problem on a regular basis right now in our cluster. What I have found is the following tcpstream:
And this continues for 1854 packets is 1 second, after which it times out. To be clear, the connection is to |
To be clear, this seems to occur randomly, but right now we are seeing it 2 - 3 times per hour for a couple of hundred connections at a time, while handling about 10.000 ops on 3 redis master nodes. |
There are huge amount of codes, I post related codes below . I will try to reproduce this problem with simple codes. $this->connection->hgetall("mall_api.user_info.1222"); |
When a node timeout occurs, then phpredis will try to connect to another node, whose answer probably will be MOVED redirect. After this we need more time to accomplish the redirection, otherwise we get "Timed out attempting to find data in the correct node" error message. Fixes phpredis#795 phpredis#888 phpredis#1142 phpredis#1385 phpredis#1633 phpredis#1707 phpredis#1811 phpredis#2407
When a node timeout occurs, then phpredis will try to connect to another node, whose answer probably will be MOVED redirect. After this we need more time to accomplish the redirection, otherwise we get "Timed out attempting to find data in the correct node" error message. Fixes #795 #888 #1142 #1385 #1633 #1707 #1811 #2407
When a node timeout occurs, then phpredis will try to connect to another node, whose answer probably will be MOVED redirect. After this we need more time to accomplish the redirection, otherwise we get "Timed out attempting to find data in the correct node" error message. Fixes #795 #888 #1142 #1385 #1633 #1707 #1811 #2407
Hi, I found some connection throw this error, but I can't reappear the error, it seems random occurrence.
The text was updated successfully, but these errors were encountered: