summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2013-11-19 10:55:43 +0100
committerantirez <antirez@gmail.com>2013-11-21 15:22:14 +0100
commit9a9c0cfaa6e1c292f4d23e62c2516f6f2f120379 (patch)
treeadb4b7e0c6b5d0c2ee73fa637478a5f97d5433c1
parent93d924ff1c70891e3fe93357988d68e158ddeda5 (diff)
downloadredis-9a9c0cfaa6e1c292f4d23e62c2516f6f2f120379.tar.gz
Sentinel: call sentinelFlushConfig() to persist state when needed.
Also the sentinel configuration rewriting was modified in order to account for failover in progress, where we need to provide the promoted slave address as master address, and the old master address as one of the slaves address.
-rw-r--r--src/sentinel.c24
1 files changed, 22 insertions, 2 deletions
diff --git a/src/sentinel.c b/src/sentinel.c
index d7ad3a1c0..fd52d0397 100644
--- a/src/sentinel.c
+++ b/src/sentinel.c
@@ -336,6 +336,7 @@ void sentinelStartFailover(sentinelRedisInstance *master);
void sentinelDiscardReplyCallback(redisAsyncContext *c, void *reply, void *privdata);
int sentinelSendSlaveOf(sentinelRedisInstance *ri, char *host, int port);
char *sentinelVoteLeader(sentinelRedisInstance *master, uint64_t req_epoch, char *req_runid, uint64_t *leader_epoch);
+void sentinelFlushConfig(void);
/* ========================= Dictionary types =============================== */
@@ -1203,13 +1204,17 @@ int sentinelResetMasterAndChangeAddress(sentinelRedisInstance *master, char *ip,
slave = createSentinelRedisInstance(NULL,SRI_SLAVE,slaves[j]->ip,
slaves[j]->port, master->quorum, master);
releaseSentinelAddr(slaves[j]);
- if (slave) sentinelEvent(REDIS_NOTICE,"+slave",slave,"%@");
+ if (slave) {
+ sentinelEvent(REDIS_NOTICE,"+slave",slave,"%@");
+ sentinelFlushConfig();
+ }
}
zfree(slaves);
/* Release the old address at the end so we are safe even if the function
* gets the master->addr->ip and master->addr->port as arguments. */
releaseSentinelAddr(oldaddr);
+ sentinelFlushConfig();
return REDIS_OK;
}
@@ -1347,12 +1352,14 @@ void rewriteConfigSentinelOption(struct rewriteConfigState *state) {
di = dictGetIterator(sentinel.masters);
while((de = dictNext(di)) != NULL) {
sentinelRedisInstance *master, *ri;
+ sentinelAddr *master_addr;
sds line;
/* sentinel monitor */
master = dictGetVal(de);
+ master_addr = sentinelGetCurrentMasterAddress(master);
line = sdscatprintf(sdsempty(),"sentinel monitor %s %s %d %d",
- master->name, master->addr->ip, master->addr->port,
+ master->name, master_addr->ip, master_addr->port,
master->quorum);
rewriteConfigRewriteLine(state,"sentinel",line,1);
@@ -1413,7 +1420,18 @@ void rewriteConfigSentinelOption(struct rewriteConfigState *state) {
/* sentinel known-slave */
di2 = dictGetIterator(master->slaves);
while((de = dictNext(di)) != NULL) {
+ sentinelAddr *slave_addr;
+
ri = dictGetVal(de);
+ slave_addr = ri->addr;
+
+ /* If master_addr (obtained using sentinelGetCurrentMasterAddress()
+ * so it may be the address of the promoted slave) is equal to this
+ * slave's address, a failover is in progress and the slave was
+ * already successfully promoted. So as the address of this slave
+ * we use the old master address instead. */
+ if (sentinelAddrIsEqual(slave_addr,master_addr))
+ slave_addr = master->addr;
line = sdscatprintf(sdsempty(),
"sentinel known-slave %s %s %d",
master->name, ri->addr->ip, ri->addr->port);
@@ -1756,6 +1774,7 @@ void sentinelRefreshInstanceInfo(sentinelRedisInstance *ri, const char *info) {
ri->master->config_epoch = ri->master->failover_epoch;
ri->master->failover_state = SENTINEL_FAILOVER_STATE_RECONF_SLAVES;
ri->master->failover_state_change_time = mstime();
+ sentinelFlushConfig();
sentinelEvent(REDIS_WARNING,"+promoted-slave",ri,"%@");
sentinelEvent(REDIS_WARNING,"+failover-state-reconf-slaves",
ri->master,"%@");
@@ -1976,6 +1995,7 @@ void sentinelReceiveHelloMessages(redisAsyncContext *c, void *reply, void *privd
* for Sentinels we don't have a later chance to fill it,
* so do it now. */
si->runid = sdsnew(token[2]);
+ sentinelFlushConfig();
}
}