Skip to content
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

Make Relay work with redis cluster #1397

Merged
merged 16 commits into from
Sep 13, 2023

Conversation

dorrogeray
Copy link
Contributor

Currently, when predis client is configured to use a combination of Relay and Redis Cluster, it does not work correctly when redis replies with MOVED. Following set of fixes should get it working:

  • Ensure connection is open when RelayConnection::getIdentifier is called
  • Return error responses instead of throwing them in RelayConnection::executeCommand so that RedisCluster::executeCommand can intercept MOVED errors and handle them with RedisCluster::onErrorResponse
  • Make parsing of connection id in RedisCluster::onMovedResponse more resilient by culling off details from the exception message - this is required because relay exception message format is "IP:port (details about exception)"

CC: @tillkruss

@dorrogeray dorrogeray force-pushed the fix-relay-working-with-redis-cluster branch from 246e11b to 96b9bc5 Compare September 7, 2023 15:35
@tillkruss
Copy link
Member

Thanks! Can you re-enable some of the cluster tests to ensure this works?

@tillkruss tillkruss self-assigned this Sep 10, 2023
@dorrogeray dorrogeray force-pushed the fix-relay-working-with-redis-cluster branch 4 times, most recently from b1216bd to 63401d0 Compare September 10, 2023 20:40
@coveralls
Copy link

coveralls commented Sep 10, 2023

Coverage Status

coverage: 80.208% (+2.0%) from 78.167% when pulling b4d981f on dorrogeray:fix-relay-working-with-redis-cluster into 16bdd83 on predis:v2.x.

@dorrogeray dorrogeray force-pushed the fix-relay-working-with-redis-cluster branch 5 times, most recently from 75f2d84 to 7fbdaf8 Compare September 10, 2023 22:17
@dorrogeray dorrogeray closed this Sep 10, 2023
@dorrogeray dorrogeray reopened this Sep 10, 2023
@dorrogeray dorrogeray force-pushed the fix-relay-working-with-redis-cluster branch from 7fbdaf8 to 8ddce5f Compare September 10, 2023 22:32
@dorrogeray
Copy link
Contributor Author

@tillkruss ready for review

tillkruss
tillkruss previously approved these changes Sep 11, 2023
@tillkruss
Copy link
Member

Thanks for the work @dorrogeray on this. I've pushed a few formatting changes.

BTW, we're currently working on full Relay\Cluster support internally. /ping @yatsukhnenko

@tillkruss
Copy link
Member

Can we get your review @vladvildanov?

@dorrogeray dorrogeray force-pushed the fix-relay-working-with-redis-cluster branch from e507535 to 97a9754 Compare September 11, 2023 17:25
@tillkruss
Copy link
Member

@dorrogeray: The PR looks great. The only concern that I have, which isn't directly related is OK (3 tests, 4 assertions).

Would you mind seeing if we can run the one simple Redis command test case against cluster?

https://github.com/predis/predis/blob/v2.x/tests/Predis/Command/Redis/GET_Test.php

@dorrogeray dorrogeray force-pushed the fix-relay-working-with-redis-cluster branch 2 times, most recently from 4003f34 to b4d981f Compare September 11, 2023 20:43
@dorrogeray
Copy link
Contributor Author

@tillkruss I have added some cluster tests. The $redis->del('metavars'); is needed because FLUSHDB flushes database on a single node, it does not clear the entire redis cluster. Leftovers from previous tests were causing problems in those particular tests..

@tillkruss tillkruss requested review from vladvildanov and chayim and removed request for vladvildanov September 11, 2023 22:26
dorrogeray and others added 16 commits September 13, 2023 09:57
- Ensure connection is open when RelayConnection::getIdentifier is called
- Return error responses instead of throwing them in RelayConnection::executeCommand so that RedisCluster::executeCommand can intercept MOVED errors and handle them with RedisCluster::onErrorResponse
- Make parsing of connection id in RedisCluster::onMovedResponse more resilient by culling off details from the exception message - this is required because relay exception message format is "IP:port (details about exception)"
@tillkruss tillkruss force-pushed the fix-relay-working-with-redis-cluster branch from b4d981f to f8f4b14 Compare September 13, 2023 16:57
@tillkruss tillkruss merged commit 6372661 into predis:v2.x Sep 13, 2023
vladvildanov pushed a commit to vladvildanov/predis that referenced this pull request Jan 13, 2025
tillkruss pushed a commit that referenced this pull request Jan 14, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

4 participants