-
-
Notifications
You must be signed in to change notification settings - Fork 989
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
Added support for sharded pub/sub consumer #1303
Conversation
// SUNSUBSCRIBE command could be called without arguments, so it doesn't matter on each node it will be called. | ||
if (empty($arguments)) { | ||
return 'fake'; |
There was a problem hiding this comment.
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;
?
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- 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.
- 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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- but that means that the node that corresponds to
'fake'
(slot 14787) will be used more than other nodes..
There was a problem hiding this comment.
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
SSUBSCRIBE
,SUNSUBSCRIBE
,SPUBLISH
commands.Consumer
class, to allow run over cluster connection in sharded pub/sub context.RedisCluster
connection to be able to loop over sockets and read incoming messages from Redis server.DispatcherLoop
to run pub/sub commands depends on subscription context.Closes #971
Closes #972
Closes #973