Adds and/or initializes a standby coordinator host for a Greenplum Database system.
gpinitstandby { -s <standby_hostname> [-P port] | -r | -n } [-a] [-q]
[-D] [-S <standby_data_directory>] [-l <logfile_directory>]
[--hba-hostnames <boolean>]
gpinitstandby -v
gpinitstandby -?
The gpinitstandby
utility adds a backup, standby coordinator instance to your Greenplum Database system. If your system has an existing standby coordinator instance configured, use the -r
option to remove it before adding the new standby coordinator instance.
Before running this utility, make sure that the Greenplum Database software is installed on the standby coordinator host and that you have exchanged SSH keys between the hosts. It is recommended that the coordinator port is set to the same port number on the coordinator host and the standby coordinator host.
This utility should be run on the currently active primary coordinator host. See the Greenplum Database Installation Guide for instructions.
The utility performs the following steps:
-r
option is supplied)pg_hba.conf
file of the Greenplum Database coordinator to allow access from the newly added standby coordinatorA backup, standby coordinator instance serves as a 'warm standby' in the event of the primary coordinator becoming non-operational. The standby coordinator is kept up to date by transaction log replication processes (the walsender
and walreceiver
), which run on the primary coordinator and standby coordinator hosts and keep the data between the primary and standby coordinator instances synchronized. If the primary coordinator fails, the log replication process is shut down, and the standby coordinator can be activated in its place by using the gpactivatestandby
utility. Upon activation of the standby coordinator, the replicated logs are used to reconstruct the state of the coordinator instance at the time of the last successfully committed transaction.
The activated standby coordinator effectively becomes the Greenplum Database coordinator, accepting client connections on the coordinator port and performing normal coordinator operations such as SQL command processing and resource management.
ImportantIf the
gpinitstandby
utility previously failed to initialize the standby coordinator, you must delete the files in the standby coordinator data directory before runninggpinitstandby
again. The standby coordinator data directory is not cleaned up after an initialization failure because it contains log files that can help in determining the reason for the failure.
If an initialization failure occurs, a summary report file is generated in the standby host directory /tmp
. The report file lists the directories on the standby host that require clean up.
pg_hba.conf
file when updating this file with addresses that can connect to Greenplum Database. When set to 0 -- the default value -- this utility uses IP addresses when updating this file. When set to 1, this utility uses host names when updating this file. For consistency, use the same value that was specified for
HBA_HOSTNAMES
when the Greenplum Database system was initialized. For information about how Greenplum Database resolves host names in the
pg_hba.conf
file, see
Configuring Client Authentication.
~/gpAdminLogs
.
This option specifies the port that is used by the Greenplum Database standby coordinator. The default is the same port used by the active Greenplum Database coordinator.
The data directory to use for a new standby coordinator. The default is the same directory used by the active coordinator.
Add a standby coordinator instance to your Greenplum Database system and start the synchronization process:
gpinitstandby -s host09
Start an existing standby coordinator instance and synchronize the data with the current primary coordinator instance:
gpinitstandby -n
NoteDo not specify the -n and -s options in the same command.
Add a standby coordinator instance to your Greenplum Database system specifying a different port:
gpinitstandby -s myhost -P 2222
If you specify the same host name as the active Greenplum Database coordinator, you must also specify a different port number with the -P
option and a standby data directory with the -S
option.
Remove the existing standby coordinator from your Greenplum system configuration:
gpinitstandby -r