mirror of
https://github.com/fluencelabs/redis
synced 2025-04-04 08:41:04 +00:00
Redis Benchmark: handle CLUSTERDOWN error
This commit is contained in:
parent
c389ad0d52
commit
8fadebfcca
@ -449,27 +449,27 @@ static void readHandler(aeEventLoop *el, int fd, void *privdata, int mask) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (config.cluster_mode && is_err && c->cluster_node &&
|
/* Try to update slots configuration if reply error is
|
||||||
(!strncmp(r->str,"MOVED",5) ||
|
* MOVED/ASK/CLUSTERDOWN and the key(s) used by the command
|
||||||
!strcmp(r->str,"ASK")))
|
* contain(s) the slot hash tag. */
|
||||||
{
|
if (is_err && c->cluster_node && c->staglen) {
|
||||||
/* Try to update slots configuration if the key of the
|
int fetch_slots = 0, do_wait = 0;
|
||||||
* command is using the slot hash tag. */
|
if (!strncmp(r->str,"MOVED",5) || !strncmp(r->str,"ASK",3))
|
||||||
if (c->staglen && !fetchClusterSlotsConfiguration(c))
|
fetch_slots = 1;
|
||||||
exit(1);
|
else if (!strncmp(r->str,"CLUSTERDOWN",11)) {
|
||||||
/*
|
/* Usually the cluster is able to recover itself after
|
||||||
clusterNode *node = c->cluster_node;
|
* a CLUSTERDOWN error, so try to sleep one second
|
||||||
assert(node);
|
* before requesting the new configuration. */
|
||||||
if (++node->current_slot_index >= node->slots_count) {
|
fetch_slots = 1;
|
||||||
if (config.showerrors) {
|
do_wait = 1;
|
||||||
fprintf(stderr, "WARN: No more available slots in "
|
printf("Error from server %s:%d: %s\n",
|
||||||
"node %s:%d\n", node->ip, node->port);
|
c->cluster_node->ip,
|
||||||
}
|
c->cluster_node->port,
|
||||||
freeReplyObject(reply);
|
r->str);
|
||||||
freeClient(c);
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
*/
|
if (do_wait) sleep(1);
|
||||||
|
if (fetch_slots && !fetchClusterSlotsConfiguration(c))
|
||||||
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
freeReplyObject(reply);
|
freeReplyObject(reply);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user