pgd raft show v5.7
Synopsis
The pgd raft show
command is used to display the Raft status in the EDB Postgres Distributed cluster. In particular, it lists all nodes in all groups, including the top level group, and their Raft status - leader or follower, number of nodes in the group with them, number of voting nodes in the group, presence of a leader, and the term number.
Syntax
pgd raft show [OPTIONS]
Options
No command specific options. See Global Options.
Examples
Show Raft status
pgd raft show
Group Name Node Name State Leader Name Current Term Commit Index Nodes Voting Nodes Protocol Version ------------- --------- ------------- ----------- ------------ ------------ ----- ------------ ---------------- dc1_subgroup kaftan RAFT_LEADER kaftan 1 4 3 3 0 dc1_subgroup kaboom RAFT_FOLLOWER kaftan 1 4 3 3 0 dc1_subgroup kaolin RAFT_FOLLOWER kaftan 1 4 3 3 0 democluster kaftan RAFT_LEADER kaftan 0 335 3 3 5007 democluster kaboom RAFT_FOLLOWER kaftan 0 335 3 3 5007 democluster kaolin RAFT_FOLLOWER kaftan 0 335 3 3 5007
Note that dc1_subgroup
here is a data group with local routing, and democluster
is the top level group with global routing.
The Protocol Version
column shows the version of the Raft protocol in use.
The Commit Index
column shows the index of the last committed log entry.
The Nodes
column shows the total number of nodes in the group.
The Voting Nodes
column shows the number of nodes that participate in the Raft consensus.
The State
column shows the Raft state of the node - leader or follower. The Leader Name
column shows the name of the leader node in the group.
The Current Term
column shows the current term number.