Home
last modified time | relevance | path

Searched refs:CLUSTER_NODE_FAIL (Results 1 – 3 of 3) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dcluster.h53 #define CLUSTER_NODE_FAIL 8 /* The node is believed to be malfunctioning */ macro
68 #define nodeFailed(n) ((n)->flags & CLUSTER_NODE_FAIL)
H A Dcluster.c199 n->flags |= CLUSTER_NODE_FAIL; in clusterLoadConfig()
1210 node->flags |= CLUSTER_NODE_FAIL; in markNodeAsFailingIfNeeded()
1234 node->flags &= ~CLUSTER_NODE_FAIL; in clearNodeFailureIfNeeded()
1249 node->flags &= ~CLUSTER_NODE_FAIL; in clearNodeFailureIfNeeded()
1365 if (flags & (CLUSTER_NODE_FAIL|CLUSTER_NODE_PFAIL)) { in clusterProcessGossipSection()
1385 if (!(flags & (CLUSTER_NODE_FAIL|CLUSTER_NODE_PFAIL)) && in clusterProcessGossipSection()
1408 if (node->flags & (CLUSTER_NODE_FAIL|CLUSTER_NODE_PFAIL) && in clusterProcessGossipSection()
1410 !(flags & (CLUSTER_NODE_FAIL|CLUSTER_NODE_PFAIL)) && in clusterProcessGossipSection()
2011 failing->flags |= CLUSTER_NODE_FAIL; in clusterProcessPacket()
3786 server.cluster->slots[j]->flags & (CLUSTER_NODE_FAIL)) in clusterUpdateState()
[all …]
H A Dmodule.c4237 if (node->flags & CLUSTER_NODE_FAIL) *flags |= REDISMODULE_NODE_FAIL; in RM_GetClusterNodeInfo()