You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do y'all have any plans to support Redis in cluster mode?
The fact that it does or doesn't support it doesn't appear to be documented anywhere, and the Redis configuration documentation uses the word cluster, so the assumption was made...
Symptom:
Everything comes back as "control"
Digging further: if we were to add a log here we would see that every single request comes back as MOVED, meaning the root node is trying to do load balancing
Side note: it sure would be great if there were a log or something there. It sure is frustrating having to debug this thing in tsc-generated code, and figuring out what's wrong took over a dozen hours of deconstructing this thing. ioredis uses debug. It might be nice if you used the same, but no pressure :)
Root Cause:
Apparently the RedisAdapater always extendsioredis and doesn't have any support for ioredis.Cluster, which is what is required.
The text was updated successfully, but these errors were encountered:
Do y'all have any plans to support Redis in cluster mode?
The fact that it does or doesn't support it doesn't appear to be documented anywhere, and the Redis configuration documentation uses the word
cluster
, so the assumption was made...Symptom:
"control"
MOVED
, meaning the root node is trying to do load balancingdebug
. It might be nice if you used the same, but no pressure :)Root Cause:
Apparently the RedisAdapater always extends
ioredis
and doesn't have any support forioredis.Cluster
, which is what is required.The text was updated successfully, but these errors were encountered: