box.info.election
-
box.info.
election
¶ Since version 2.6.1. Show the current state of a replica set node in regards to leader election.
The following information is provided:
state
– election state (mode) of the node. Possible values areleader
,follower
, orcandidate
. For more details, refer to description of the leader election process. When election is enabled, the node is writable only in theleader
state.term
– current election term.vote
– ID of a node the current node votes for. If the value is0
, it means the node hasn’t voted in the current term yet.leader
– leader node ID in the current term. If the value is0
, it means the node doesn’t know which node is the leader in the current term.leader_idle
– time in seconds since the last interaction with the known leader. Since version 2.10.0.
Примечание
IDs in the
box.info.election
output are the replica IDs visible in thebox.info.id
output on each node and in the_cluster
space.Пример:
tarantool> box.info.election --- - state: follower term: 2 vote: 0 leader: 0 leader_idle: 0.45112800000061 ...