From 5a35e485f936a2e22e3df12052fd9182b9d408ef Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 2 Nov 2012 16:31:28 +0100 Subject: [PATCH] Emit SELECT to slaves in a centralized way. Before this commit every Redis slave had its own selected database ID state. This was not actually useful as the emitted stream of commands is identical for all the slaves. Now the the currently selected database is a global state that is set to -1 when a new slave is attached, in order to force the SELECT command to be re-emitted for all the slaves. This change is useful in order to implement replication partial resynchronization in the future, as makes sure that the stream of commands received by slaves, including SELECT commands, are exactly the same for every slave connected, at any time. In this way we could have a global offset that can identify a specific piece of the master -> slaves stream of commands. --- src/redis.c | 2 +- src/redis.h | 2 +- src/replication.c | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/redis.c b/src/redis.c index 1e0e0fbc..a4654d3a 100644 --- a/src/redis.c +++ b/src/redis.c @@ -1269,6 +1269,7 @@ void initServer() { server.clients_to_close = listCreate(); server.slaves = listCreate(); server.monitors = listCreate(); + server.slaveseldb = -1; /* Force to emit the first SELECT command. */ server.unblocked_clients = listCreate(); server.ready_keys = listCreate(); @@ -2215,7 +2216,6 @@ void monitorCommand(redisClient *c) { if (c->flags & REDIS_SLAVE) return; c->flags |= (REDIS_SLAVE|REDIS_MONITOR); - c->slaveseldb = 0; listAddNodeTail(server.monitors,c); addReply(c,shared.ok); } diff --git a/src/redis.h b/src/redis.h index f1a38ceb..267d1c38 100644 --- a/src/redis.h +++ b/src/redis.h @@ -412,7 +412,6 @@ typedef struct redisClient { time_t lastinteraction; /* time of the last interaction, used for timeout */ time_t obuf_soft_limit_reached_time; int flags; /* REDIS_SLAVE | REDIS_MONITOR | REDIS_MULTI ... */ - int slaveseldb; /* slave selected db, if this client is a slave */ int authenticated; /* when requirepass is non-NULL */ int replstate; /* replication state if this is a slave */ int repldbfd; /* replication DB file descriptor */ @@ -534,6 +533,7 @@ struct redisServer { list *clients; /* List of active clients */ list *clients_to_close; /* Clients to close asynchronously */ list *slaves, *monitors; /* List of slaves and MONITORs */ + int slaveseldb; /* Last SELECTed DB in replication output */ redisClient *current_client; /* Current client, only used on crash report */ char neterr[ANET_ERR_LEN]; /* Error buffer for anet.c */ /* RDB / AOF loading information */ diff --git a/src/replication.c b/src/replication.c index a6abd0b9..71b2921f 100644 --- a/src/replication.c +++ b/src/replication.c @@ -54,7 +54,7 @@ void replicationFeedSlaves(list *slaves, int dictid, robj **argv, int argc) { /* Feed slaves that are waiting for the initial SYNC (so these commands * are queued in the output buffer until the initial SYNC completes), * or are already in sync with the master. */ - if (slave->slaveseldb != dictid) { + if (server.slaveseldb != dictid) { robj *selectcmd; if (dictid >= 0 && dictid < REDIS_SHARED_SELECT_CMDS) { @@ -66,11 +66,11 @@ void replicationFeedSlaves(list *slaves, int dictid, robj **argv, int argc) { } addReply(slave,selectcmd); decrRefCount(selectcmd); - slave->slaveseldb = dictid; } addReplyMultiBulkLen(slave,argc); for (j = 0; j < argc; j++) addReplyBulk(slave,argv[j]); } + server.slaveseldb = dictid; } void replicationFeedMonitors(redisClient *c, list *monitors, int dictid, robj **argv, int argc) { @@ -177,7 +177,7 @@ void syncCommand(redisClient *c) { anetDisableTcpNoDelay(NULL, c->fd); /* Non critical if it fails. */ c->repldbfd = -1; c->flags |= REDIS_SLAVE; - c->slaveseldb = 0; + server.slaveseldb = -1; /* Force to re-emit the SELECT command. */ listAddNodeTail(server.slaves,c); return; }