pgd node set-option v5.7.0
Warning: You are not reading the most recent version of this documentation.
Documentation improvements are made only to the latest version.
As per semantic versioning, PGD minor releases remain backward compatible and may include important bug fixes and enhancements.
We recommend upgrading the latest minor release as soon as possible.
If you want up-to-date information, read the latest PGD documentation.
Documentation improvements are made only to the latest version.
As per semantic versioning, PGD minor releases remain backward compatible and may include important bug fixes and enhancements.
We recommend upgrading the latest minor release as soon as possible.
If you want up-to-date information, read the latest PGD documentation.
Synopsis
The pgd node set-option
command is used to set node-level options in the EDB Postgres Distributed cluster.
Syntax
pgd node <NODE_NAME> set-option [OPTIONS] <OPTION> <VALUE>
Where <NODE_NAME>
is the name of the node for which you want to get options.
And <OPTION>
is the name of a specific node option you want to get and <VALUE>
is the value you want it set to.
The following options are available:
Node Options
Option | Description |
---|---|
route_priority | Priority assigned to the node. |
route_fence | Set to fence the node |
route_writes | Set to allow node to route writes. |
route_reads | Set to allow node to route reads. |
route_dsn | DSN for connections to this node |
Options
No command specific options. See Global Options.
Examples
Set a specific node option
pgd node kaboom set-option route_priority 100
Output
Command executed successfully
Set a specific node option with a space in the value
pgd node kaboom set-option route_dsn "host=kaboom port=5444 dbname=bdrdb user=pgdproxy"
Output
Command executed successfully