Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
6c4d904b
Commit
6c4d904b
authored
Oct 02, 2013
by
antirez
Browse files
Cluster: bus messages stats in CLUSTER info.
parent
abe81781
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/cluster.c
View file @
6c4d904b
...
@@ -259,6 +259,8 @@ void clusterInit(void) {
...
@@ -259,6 +259,8 @@ void clusterInit(void) {
server.cluster->failover_auth_count = 0;
server.cluster->failover_auth_count = 0;
server.cluster->failover_auth_epoch = 0;
server.cluster->failover_auth_epoch = 0;
server.cluster->last_vote_epoch = 0;
server.cluster->last_vote_epoch = 0;
server.cluster->stats_bus_messages_sent = 0;
server.cluster->stats_bus_messages_received = 0;
memset(server.cluster->migrating_slots_to,0,
memset(server.cluster->migrating_slots_to,0,
sizeof(server.cluster->migrating_slots_to));
sizeof(server.cluster->migrating_slots_to));
memset(server.cluster->importing_slots_from,0,
memset(server.cluster->importing_slots_from,0,
...
@@ -878,6 +880,7 @@ int clusterProcessPacket(clusterLink *link) {
...
@@ -878,6 +880,7 @@ int clusterProcessPacket(clusterLink *link) {
uint64_t senderCurrentEpoch, senderConfigEpoch;
uint64_t senderCurrentEpoch, senderConfigEpoch;
clusterNode *sender;
clusterNode *sender;
server.cluster->stats_bus_messages_received++;
redisLog(REDIS_DEBUG,"--- Processing packet of type %d, %lu bytes",
redisLog(REDIS_DEBUG,"--- Processing packet of type %d, %lu bytes",
type, (unsigned long) totlen);
type, (unsigned long) totlen);
...
@@ -1318,6 +1321,7 @@ void clusterSendMessage(clusterLink *link, unsigned char *msg, size_t msglen) {
...
@@ -1318,6 +1321,7 @@ void clusterSendMessage(clusterLink *link, unsigned char *msg, size_t msglen) {
clusterWriteHandler,link);
clusterWriteHandler,link);
link->sndbuf = sdscatlen(link->sndbuf, msg, msglen);
link->sndbuf = sdscatlen(link->sndbuf, msg, msglen);
server.cluster->stats_bus_messages_sent++;
}
}
/* Send a message to all the nodes that are part of the cluster having
/* Send a message to all the nodes that are part of the cluster having
...
@@ -2449,6 +2453,8 @@ void clusterCommand(redisClient *c) {
...
@@ -2449,6 +2453,8 @@ void clusterCommand(redisClient *c) {
"cluster_known_nodes:%lu\r\n"
"cluster_known_nodes:%lu\r\n"
"cluster_size:%d\r\n"
"cluster_size:%d\r\n"
"cluster_current_epoch:%llu\r\n"
"cluster_current_epoch:%llu\r\n"
"cluster_stats_messages_sent:%lld\r\n"
"cluster_stats_messages_received:%lld\r\n"
, statestr[server.cluster->state],
, statestr[server.cluster->state],
slots_assigned,
slots_assigned,
slots_ok,
slots_ok,
...
@@ -2456,7 +2462,9 @@ void clusterCommand(redisClient *c) {
...
@@ -2456,7 +2462,9 @@ void clusterCommand(redisClient *c) {
slots_fail,
slots_fail,
dictSize(server.cluster->nodes),
dictSize(server.cluster->nodes),
server.cluster->size,
server.cluster->size,
(unsigned long long) server.cluster->currentEpoch
(unsigned long long) server.cluster->currentEpoch,
server.cluster->stats_bus_messages_sent,
server.cluster->stats_bus_messages_received
);
);
addReplySds(c,sdscatprintf(sdsempty(),"$%lu\r\n",
addReplySds(c,sdscatprintf(sdsempty(),"$%lu\r\n",
(unsigned long)sdslen(info)));
(unsigned long)sdslen(info)));
...
...
src/redis.h
View file @
6c4d904b
...
@@ -654,6 +654,8 @@ typedef struct {
...
@@ -654,6 +654,8 @@ typedef struct {
/* The followign fields are uesd by masters to take state on elections. */
/* The followign fields are uesd by masters to take state on elections. */
uint64_t
last_vote_epoch
;
/* Epoch of the last vote granted. */
uint64_t
last_vote_epoch
;
/* Epoch of the last vote granted. */
int
handle_slave_failover_asap
;
/* Call clusterHandleSlaveFailover() ASAP. */
int
handle_slave_failover_asap
;
/* Call clusterHandleSlaveFailover() ASAP. */
long
long
stats_bus_messages_sent
;
/* Num of msg sent via cluster bus. */
long
long
stats_bus_messages_received
;
/* Num of msg received via cluster bus. */
}
clusterState
;
}
clusterState
;
/* Redis cluster messages header */
/* Redis cluster messages header */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment