Raft Operator HTTP API
The /operator/raft
endpoints provide tools for management of Raft the
consensus subsystem and cluster quorum.
Please see the Consensus Protocol Guide for more information about Raft consensus protocol and its use.
Read Configuration
This endpoint reads the current raft configuration.
Method | Path | Produces |
---|---|---|
GET | /operator/raft/configuration | application/json |
The table below shows this endpoint's support for blocking queries, consistency modes, agent caching, and required ACLs.
Blocking Queries | Consistency Modes | Agent Caching | ACL Required |
---|---|---|---|
NO | default and stale | none | operator:read |
Query Parameters
dc
(string: "")
- Specifies the datacenter to query. This parameter defaults to the datacenter of the agent being queried.stale
(bool: false)
- If the cluster does not currently have a leader an error will be returned. You can use the?stale
query parameter to read the Raft configuration from any of the Consul servers. Not setting this will choose the default consistency mode which will forward the request to the leader for processing but not re-confirm the server is still the leader before returning results. See default consistency for more details.
Sample Request
Sample Response
Servers
is has information about the servers in the Raft peer configuration:ID
is the ID of the server. This is the same as theAddress
in Consul 0.7 but may be upgraded to a GUID in a future version of Consul.Node
is the node name of the server, as known to Consul, or "(unknown)" if the node is stale and not known.Address
is the IP:port for the server.Leader
is either "true" or "false" depending on the server's role in the Raft configuration.Voter
is "true" or "false", indicating if the server has a vote in the Raft configuration. Future versions of Consul may add support for non-voting servers.
Index
is the Raft corresponding to this configuration. The latest configuration may not yet be committed if changes are in flight.
Delete Raft Peer
This endpoint removes the Consul server with given address from the Raft configuration.
There are rare cases where a peer may be left behind in the Raft configuration even though the server is no longer present and known to the cluster. This endpoint can be used to remove the failed server so that it is no longer affects the Raft quorum.
If ACLs are enabled, the client will need to supply an ACL Token with operator
write privileges.
Method | Path | Produces |
---|---|---|
DELETE | /operator/raft/peer | application/json |
The table below shows this endpoint's support for blocking queries, consistency modes, agent caching, and required ACLs.
Blocking Queries | Consistency Modes | Agent Caching | ACL Required |
---|---|---|---|
NO | none | none | operator:write |
The corresponding CLI command is consul operator raft remove-peer
.
Query Parameters
id|address
(string: <required>)
- Specifies the ID or address (IP:port) of the raft peer to remove.dc
(string: "")
- Specifies the datacenter to query. This will default to the datacenter of the agent being queried.
Sample Request
Transfer Raft Leadership
This endpoint transfers the Raft leadership from the current leader to a different Raft peer.
The new leader is selected at random unless explicitly specified with the id
parameter.
Method | Path | Produces |
---|---|---|
POST | /operator/raft/transfer-leader | application/json |
The table below shows this endpoint's support for blocking queries, consistency modes, agent caching, and required ACLs.
Blocking Queries | Consistency Modes | Agent Caching | ACL Required |
---|---|---|---|
NO | none | none | operator:write |
The corresponding CLI command is consul operator raft transfer-leader
.
Query Parameters
id
(string: "")
- Specifies the node ID of the Raft peer to transfer leadership to. If empty, leadership transfers to a random server agent.
Sample Request