mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
PSYNC2 fix - promoted slave should hold on to it's backlog
after a slave is promoted (assuming it has no slaves and it booted over an hour ago), it will lose it's replication backlog at the next replication cron, rather than waiting for slaves to connect to it. so on a simple master/slave faiover, if the new slave doesn't connect immediately, it may be too later and PSYNC2 will fail.
This commit is contained in:
parent
1b8eec3e53
commit
689b64c3ad
@ -1970,6 +1970,11 @@ void replicationUnsetMaster(void) {
|
||||
* with PSYNC version 2, there is no need for full resync after a
|
||||
* master switch. */
|
||||
server.slaveseldb = -1;
|
||||
|
||||
/* We need to remember the time when we became a master and lost all
|
||||
* attached slaves (if we had any), as after some time we'll free the
|
||||
* replication backlog. */
|
||||
server.repl_no_slaves_since = server.unixtime;
|
||||
}
|
||||
|
||||
/* This function is called when the slave lose the connection with the
|
||||
|
Loading…
Reference in New Issue
Block a user