- Usage:
-
CLUSTER INFO
- Complexity:
- O(1)
- Since:
- 3.0.0
- ACL Categories:
- @slow
cluster_state: State isokif the node is able to receive queries.failif there is at least one hash slot which is unbound (no node associated), in error state (node serving it is flagged with FAIL flag), or if the majority of primaries can't be reached by this node.cluster_slots_assigned: Number of slots which are associated to some node (not unbound). This number should be 16384 for the node to work properly, which means that each hash slot should be mapped to a node.cluster_slots_ok: Number of hash slots mapping to a node not inFAILorPFAILstate.cluster_slots_pfail: Number of hash slots mapping to a node inPFAILstate. Note that those hash slots still work correctly, as long as thePFAILstate is not promoted toFAILby the failure detection algorithm.PFAILonly means that we are currently not able to talk with the node, but may be just a transient error.cluster_slots_fail: Number of hash slots mapping to a node inFAILstate. If this number is not zero the node is not able to serve queries unlesscluster-require-full-coverageis set tonoin the configuration.cluster_nodes_pfail: Number of nodes inPFAILstate. A non-zero value indicates one or more nodes have been detected as unreachable but have not yet been confirmed as failed by a quorum of voting nodes.cluster_nodes_fail: Number of nodes inFAILstate. A non-zero value indicates one or more nodes are unreachable and have been marked as failed by a quorum of voting nodes.cluster_voting_nodes_pfail: Number of voting nodes inPFAILstate. A non-zero value indicates one or more primary nodes serving at least one slot are unreachable but not yet confirmed as failed by a quorum of voting nodes.cluster_voting_nodes_fail: Number of voting nodes inFAILstate. A non-zero value indicates one or more primary nodes serving at least one slot have been marked as failed by a quorum of voting nodes.cluster_known_nodes: The total number of known nodes in the cluster, including nodes inHANDSHAKEstate that may not currently be proper members of the cluster.cluster_size: The number of primary nodes serving at least one hash slot in the cluster.cluster_current_epoch: The local Current Epoch. This is used in order to create unique increasing version numbers during fail overs.cluster_my_epoch: The Config Epoch of the node we are talking with. This is the current configuration version assigned to this node.cluster_stats_messages_sent: Number of messages sent via the cluster node-to-node binary bus.cluster_stats_messages_received: Number of messages received via the cluster node-to-node binary bus.total_cluster_links_buffer_limit_exceeded: Accumulated count of cluster links freed due to exceeding thecluster-link-sendbuf-limitconfiguration.cluster_stats_messages_ping_sentandcluster_stats_messages_ping_received: Cluster bus PING (not to be confused with the client commandPING.cluster_stats_messages_pong_sentandcluster_stats_messages_pong_received: PONG (reply to PING).cluster_stats_messages_meet_sentandcluster_stats_messages_meet_received: Handshake message sent to a new node, either through gossip orCLUSTER MEET.cluster_stats_messages_fail_sentandcluster_stats_messages_fail_received: Mark node xxx as failing.cluster_stats_messages_publish_sentandcluster_stats_messages_publish_received: Pub/Sub Publish propagation, see Pubsub.cluster_stats_messages_auth-req_sentandcluster_stats_messages_auth-req_received: Replica initiated leader election to replace its primary.cluster_stats_messages_auth-ack_sentandcluster_stats_messages_auth-ack_received: Message indicating a vote during leader election.cluster_stats_messages_update_sentandcluster_stats_messages_update_received: Another node slots configuration.cluster_stats_messages_mfstart_sentandcluster_stats_messages_mfstart_received: Pause clients for manual failover.cluster_stats_messages_module_sentandcluster_stats_messages_module_received: Module cluster API message.cluster_stats_messages_publishshard_sentandcluster_stats_messages_publishshard_received: Pub/Sub Publish shard propagation, see Sharded Pubsub.
CLUSTER INFO provides INFO style information about Valkey Cluster vital parameters.
The following fields are always present in the reply:
cluster_state:ok
cluster_slots_assigned:16384
cluster_slots_ok:16384
cluster_slots_pfail:0
cluster_slots_fail:0
cluster_nodes_pfail:0
cluster_nodes_fail:0
cluster_voting_nodes_pfail:0
cluster_voting_nodes_fail:0
cluster_known_nodes:6
cluster_size:3
cluster_current_epoch:6
cluster_my_epoch:2
cluster_stats_messages_sent:1483972
cluster_stats_messages_received:1483968
total_cluster_links_buffer_limit_exceeded:0
The following message-related fields may be included in the reply if the value is not 0: Each message type includes statistics on the number of messages sent and received. Here are the explanation of these fields: ]
More information about the Current Epoch and Config Epoch variables are available in the Valkey Cluster specification document.
RESP2/RESP3 Reply
Bulk string reply: A map between named fields and values in the form of <field>:<value> lines separated by newlines composed by the two bytes CRLF.