I'd like to add a new slave to the Redis Cluster, which has 3 masters and 3 slaves currently. But the new slave it's only for bgsave, it can't be master if the master fail-over, can I do that?
Asked
Active
Viewed 620 times
1 Answers
1
It looks like you can use the 'cluster-slave-no-failover' option as of this commit: https://github.com/antirez/redis/pull/3041/files discussed here https://github.com/antirez/redis/issues/3021

Chris Tanner
- 1,624
- 1
- 12
- 20
-
Cool, do you know which version of Redis can use this option? – Cynial Feb 12 '17 at 04:29
-
It seems not released yet? – Cynial Feb 13 '17 at 01:15
-
Yeah sorry, didn't check the date and thought it'd been around for a while. You could build it yourself? – Chris Tanner Feb 13 '17 at 09:07
-
OK, I'll have a try. – Cynial Feb 13 '17 at 13:28