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

Added support for sharded pub/sub consumer #1303

Merged
merged 25 commits into from
Jul 19, 2023

Conversation

vladvildanov
Copy link
Contributor

@vladvildanov vladvildanov commented May 24, 2023

  1. Added support for SSUBSCRIBE, SUNSUBSCRIBE, SPUBLISH commands.
  2. Updated pub/sub Consumer class, to allow run over cluster connection in sharded pub/sub context.
  3. Updated RedisCluster connection to be able to loop over sockets and read incoming messages from Redis server.
  4. Updated DispatcherLoop to run pub/sub commands depends on subscription context.
  5. Added example for sharded pub/sub consumer usage and dispatcher loop.

Closes #971
Closes #972
Closes #973

@vladvildanov vladvildanov requested a review from a team May 24, 2023 13:47
@vladvildanov vladvildanov requested a review from tillkruss as a code owner May 24, 2023 13:47
@vladvildanov vladvildanov requested a review from chayim May 24, 2023 14:08
Comment on lines +406 to +408
// SUNSUBSCRIBE command could be called without arguments, so it doesn't matter on each node it will be called.
if (empty($arguments)) {
return 'fake';
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"SUNSUBSCRIBE command could be called without arguments, so it doesn't matter on each which (?) node it will be called."

why return 'fake'; and not return null;?

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also, why this function is here and not in the SUNSUBSCRIBE class?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. In Predis we're using pre-calculation (same algorithm that redis do) of slots to determine node that should accept command, it works well for commands that runs against specific key/keys, but if there's no key you still need to pre-calculate node so it's just random string returns to allow this action.
  2. It's just because of bad design, I'm totally agree it should be a part of command object and do not violate SRP, but fixing it is beyond the scope of RESP3

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. but that means that the node that corresponds to 'fake' (slot 14787) will be used more than other nodes..

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For SUNSUBSCRIBE command only which is okay??, since it's not something you're often sends to server, but I can use randomly generated string here instead

@vladvildanov vladvildanov requested a review from leibale May 31, 2023 14:25
@vladvildanov vladvildanov linked an issue Jun 1, 2023 that may be closed by this pull request
@vladvildanov vladvildanov merged commit 021238f into predis:feature/resp-3 Jul 19, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

Successfully merging this pull request may close these issues.

RESP3: Sharded PubSub
3 participants