summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2015-05-13 14:23:57 +0200
committerantirez <antirez@gmail.com>2015-05-13 14:23:57 +0200
commit3ab49895b4533fac367dec7dc6be48036067f31a (patch)
treec47dc57b53165716e09b75a11c977dc5c94a1db3
parent0eb0b55ff0840c52527ff65f0fbcac84a6e0e231 (diff)
downloadredis-3ab49895b4533fac367dec7dc6be48036067f31a.tar.gz
Sentinel: limit reconnection frequency to the ping period
-rw-r--r--src/sentinel.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/sentinel.c b/src/sentinel.c
index 40ffcce83..973f35556 100644
--- a/src/sentinel.c
+++ b/src/sentinel.c
@@ -146,6 +146,8 @@ typedef struct instanceLink {
mstime_t last_pong_time; /* Last time the instance replied to ping,
whatever the reply was. That's used to check
if the link is idle and must be reconnected. */
+ mstime_t last_reconn_time; /* Last reconnection attempt performed when
+ the link was down. */
} instanceLink;
typedef struct sentinelRedisInstance {
@@ -921,6 +923,7 @@ instanceLink *createInstanceLink(void) {
link->pc = NULL;
link->cc_conn_time = 0;
link->pc_conn_time = 0;
+ link->last_reconn_time = 0;
link->pc_last_activity = 0;
/* We set the last_ping_time to "now" even if we actually don't have yet
* a connection with the node, nor we sent a ping.
@@ -1826,6 +1829,10 @@ void sentinelSetClientName(sentinelRedisInstance *ri, redisAsyncContext *c, char
void sentinelReconnectInstance(sentinelRedisInstance *ri) {
if (ri->link->disconnected == 0) return;
instanceLink *link = ri->link;
+ mstime_t now = mstime();
+
+ if (now - ri->link->last_reconn_time < SENTINEL_PING_PERIOD) return;
+ ri->link->last_reconn_time = now;
/* Commands connection. */
if (link->cc == NULL) {