Synopsis
The pgd raft disable command stops the Raft consensus worker on one or more nodes in the EDB Postgres Distributed cluster. When the worker is disabled, the node stops participating in Raft elections, ceases to send or receive consensus log entries, and will not act as a write leader.
Enabling the worker allows the node to participate in Raft elections, log replication, and cluster-wide state changes.
Note
The consensus worker remains in the disabled state until it is explicitly enabled using pgd raft enable or until the Postgres node is restarted, whichever occurs first.
Users and roles
Requires the bdr_superuser role. See User roles.
Syntax
pgd raft disable [OPTIONS]
Options
The following options are available for the pgd raft disable command:
| Short | Long | Description |
|---|---|---|
| --node | Target a specific node by name to disable its Raft worker. | |
| --group | Target all nodes in a specific group. | |
| --all | Target all nodes in the cluster. |
See Global Options for common global options.
Examples
Disable Raft on a specific node
pgd raft disable --node kaftanRaft disabled successfully on 'node' kaftan
Disable Raft for all nodes in a group
pgd raft disable --group dc1_subgroupRaft disabled successfully on 3 nodes in group dc1_subgroup
Disable Raft for the entire cluster
pgd raft disable --allRaft disabled successfully on 6 nodes in the cluster