-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Redis Sentinel support #5141
Comments
Since implementing bullmq (which is using ioredis) this should be easy to add support for.
https://docs.bullmq.io/guide/connections
|
To be able to implement sentinel support we have to switch from node-redis to ioredis, since node-redis doesn't have sentinel support redis/node-redis#302 |
is anyone know this very popular fork? https://github.com/Snapchat/KeyDB |
* feat(server): add redis sentinel support closes #5141 * Styling --------- Co-authored-by: Chocobozzz <[email protected]>
Describe the problem to be solved
Currently the only way to ensure high availability for the redis server is to use master/slave setup with manual handling when making system upgrades.
Describe the solution you would like
Read more at https://redis.io/docs/manual/sentinel/
The currently used redis client doesn't support sentinels though, so a switch to ioredis would be needed. https://github.com/luin/ioredis#sentinel
The text was updated successfully, but these errors were encountered: