pglogical 
extension. 
For more information, see About the pglogical 
extension 
and  pglogical 
terminology and fundamental components 
.
Supported authentication methods
The two main authentication methods 
used with the pglogical 
extension are password and trust authentication
methods.
The recommended authentication method is trust authentication method. For more information, see Supported authentication methods .
Before you begin
You can install pglogical 
as an extension within a given database.
Before implementing the pglogical 
extension on AlloyDB Omni, ensure
that you meet the following system requirements:
- Access to your non-AlloyDB PostgreSQL cluster as a superuser.
- The pglogicalextension is installed in your non-AlloyDB PostgreSQL cluster. For release and distribution-specific installation instructions, see the pglogical .
- An AlloyDB Omni server installed and configured. For instructions on how to install AlloyDB Omni, see Install AlloyDB Omni .
- The IP addresses for both the non-AlloyDB PostgreSQL cluster and the AlloyDB Omni host server.
- An established and secured network between the non-AlloyDB PostgreSQL cluster and the AlloyDB Omni host server. TCP connectivity on the standard PostgreSQL port of 5432 is required.
Adjust parameters on the non-AlloyDB provider
-  Set the wal_levelparameter tological, and appendpglogicalto theshared_preload_librariesparameter in thepostgresql.conffile. Thepglogicalextension requires a minimal set of parameter adjustments on the non-AlloyDB provider cluster.cp postgresql.conf postgresql.baksed -r -i "s|(\#)?wal_level\s*=.*|wal_level=logical|" postgresql.confsed -r -i "s|(\#)?(shared_preload_libraries\s*=\s*)'(.*)'.* $ |\2'\3,pglogical'|" postgresql.confsed -r -i "s|',|'|" postgresql.conf
-  Verify that the parameters are properly set: grep -iE 'wal_level|shared_preload_libraries' postgresql.conf
-  Restart your non-AlloyDB cluster for the parameter changes to take effect. Other parameters might be already set to sufficient values or might require adjusting depending on your non-AlloyDB distribution and version. Check the following parameters: -  max_worker_processes: one per provider database and at least one per subscriber node. At least 10 is the standard for this parameter.
-  max_replication_slots: one per node on provider nodes.
-  max_wal_senders: one per node on provider nodes.
-  track_commit_timestamp: set toonif the last or first update wins conflict resolution is required.
-  listen_addresses: must include the AlloyDB Omni IP address or mention through a covering CIDR block.
 
-  
-  (Optional) If your non-AlloyDB provider is Amazon RDS or Aurora, then the pglogical extension must be enabled and the required parameters adjusted through cluster parameter groupadjustments.-  Within an existing or new cluster parameter group, set the following parameters: -  rds.logical_replicationto1
-  max_replication_slotsto50
-  max_wal_sendersto50
-  max_worker_processesto64
-  shared_preload_librariestopg_stat_statements, pglogical
 
-  
-  Restart your Amazon RDS or Aurora cluster for the cluster parameter group adjustments to take effect. 
 
-  
-  Confirm all parameter values are relevant: SELECT name , setting FROM pg_catalog . pg_settings WHERE name IN ( 'listen_addresses' , 'wal_level' , 'shared_preload_libraries' , 'max_worker_processes' , 'max_replication_slots' , 'max_wal_senders' , 'track_commit_timestamp' ) ORDER BY name ;
Host-based authentication adjustments to the non-AlloyDB Omni provider cluster
The pglogical 
makes local TCP connections to the provider database. Therefore,
you must add the host server's IP address to the AlloyDB Omni  DATA_DIR 
/pg_hba.conf 
file where  DATA_DIR 
 
is the file system path to your data directory—for example, /home/$USER/alloydb-data 
.
-  Add a trust authentication entry for the local server, specific to a new pglogical_replicationuser, to theDATA_DIR /pg_hba.conffile.Additionally, subscriber nodes must be able to authenticate against the provider nodes. Add either each subscriber node's IP address or the appropriate CIDR block IP range to the DATA_DIR /pg_hba.conffile:echo -e "# pglogical entries: host all pglogical_replication samehost trust host all pglogical_replication SERVER_IP_ADDRESS /32 trust " | column -t | sudo tee -a DATA_DIR /pg_hba.confReplace SERVER_IP_ADDRESSwith the IP address of the primary AlloyDB Omni instance to replicate from.
-  Verify that the entries are correct: tail -3 DATA_DIR /pg_hba.conf
-  Restart your non-AlloyDB cluster for the parameter changes to take effect. 
Adjust parameters to the AlloyDB Omni subscriber cluster
The pglogical 
requires a minimal set of parameter adjustments on the
AlloyDB Omni subscriber cluster too. You must append pglogical 
to the shared_preload_libraries 
parameter in the  DATA_DIR 
/postgresql.conf 
file. If any database within the cluster acts as a provider database, then make
the parameter changes required for provider databases.
-  Adjust the parameters: sudo sed -r -i "s|(shared_preload_libraries\s*=\s*)'(.*)'.* $ |\1'\2,pglogical'|" DATA_DIR /postgresql.conf
-  Verify that the parameter is set properly: grep -iE 'shared_preload_libraries' DATA_DIR /postgresql.conf
-  Restart AlloyDB Omni for the parameter change to take effect: Dockerdocker container restart CONTAINER_NAMEReplace CONTAINER_NAMEwith the name that you assigned to the AlloyDB Omni container when you started it.Podmanpodman container restart CONTAINER_NAMEReplace CONTAINER_NAMEwith the name that you assigned to the AlloyDB Omni container when you started it.
-  Set the AlloyDB Omni default values for other provider database parameters: -  max_worker_processes: One per provider database and one per subscriber node.
-  track_commit_timestamp: Set toonif the last/first update wins conflict resolution is required.
 
-  
-  Confirm all parameter values are relevant: Dockerdocker exec CONTAINER_NAME psql -h localhost -U postgres -c " SELECT name, setting FROM pg_catalog.pg_settings WHERE name IN ('listen_addresses', 'wal_level', 'shared_preload_libraries', 'max_worker_processes', 'max_replication_slots', 'max_wal_senders', 'track_commit_timestamp') ORDER BY name; "Podmanpodman exec CONTAINER_NAME psql -h localhost -U postgres -c " SELECT name, setting FROM pg_catalog.pg_settings WHERE name IN ('listen_addresses', 'wal_level', 'shared_preload_libraries', 'max_worker_processes', 'max_replication_slots', 'max_wal_senders', 'track_commit_timestamp') ORDER BY name; "
Host-based authentication adjustments to the AlloyDB Omni subscriber cluster
The pglogical 
makes local TCP connections to the AlloyDB Omni subscriber
database. Therefore, you must add the subscriber's host server's IP address to
the AlloyDB Omni  DATA_DIR 
/pg_hba.conf 
file.
-  Add a trust authentication entry for the local server, specific to a new pglogical_replicationuser, to theDATA_DIR /pg_hba.conffile:echo -e "# pglogical entries: host all pglogical_replication samehost trust " | column -t | sudo tee -a DATA_DIR /pg_hba.conf
-  Verify that the entry is correct: tail -2 DATA_DIR /pg_hba.conf
-  Restart AlloyDB Omni for the authentication change to take effect: docker container restart CONTAINER_NAME
Create a pglogical 
user in both provider and subscriber clusters
 
 You must create a new user in both the provider and subscriber cluster. pglogical 
requires the user to have both the superuser 
and replication 
attributes.
-  In the AlloyDB for PostgreSQL provider cluster, create the user role: CREATE USER pglogical_replication LOGIN PASSWORD 'secret' ; ALTER USER pglogical_replication WITH replication ; ALTER USER pglogical_replication WITH superuser ;
-  (Optional) If your non-AlloyDB provider is Amazon RDS or Aurora, then you must grant the following role: GRANT rds_superuser TO replication_user ;
Add pglogical 
and nodes to the non-AlloyDB provider database
 
 -  Grant required privileges. You must install the pglogicalextension in each database and grant theusagepermission to the pglogical database user.For example, if your database is my_test_db, run the following command:CREATE EXTENSION IF NOT EXISTS pglogical ; GRANT usage ON SCHEMA pglogical TO pglogical_replication ;
-  Create a pglogicalnode for the provider databases. Thenode_nameis arbitrary and thedsnstring must be a valid TCP connection back to the same database.For example, for the my_test_dbdatabase, run the following command:SELECT pglogical . create_node ( node_name : = 'provider' , dsn : = 'host= SERVER_IP_ADDRESS port=5432 dbname=my_test_db user=pglogical_replication password=secret' );
Create a table and add it to the default replication set
Create a table and add it to the default replication set on the non-AlloyDB provider database.
-  Create a test table called test_table_1in the provider database:CREATE TABLE test_table_1 ( col1 INT PRIMARY KEY ); INSERT INTO test_table_1 VALUES ( 1 ),( 2 ),( 3 );
-  Manually add the test table to the default replication set. You can either create custom pglogical replication sets, or you can use the default replication sets. Several default replication sets such as default,default_insert_only, andddl_sqlwere created when you created the extension. You can add tables and sequences to the replication sets individually, or all at once for a specified schema.-- Add the specified table to the default replication set: SELECT pglogical . replication_set_add_table ( set_name : = 'default' , relation : = 'test_table_1' , synchronize_data : = TRUE ); -- Check which tables have been added to all replication sets: SELECT * FROM pglogical . replication_set_table ;
-  (Optional) Add all tables in a specified schema, such as public:-- Add all "public" schema tables to the default replication set: SELECT pglogical . replication_set_add_all_tables ( 'default' , ARRAY [ 'public' ]); -- Check which tables have been added to all replication sets: SELECT * FROM pglogical . replication_set_table ; -- Add all "public" schema sequences to the default replication: SELECT pglogical . replication_set_add_all_sequences ( 'default' , ARRAY [ 'public' ]); -- Check which sequences have been added to all replication sets: SELECT * FROM pglogical . replication_set_seq ;
-  Remove the table from the defaultreplication set. If there are any tables in the schema that do not have a primary key or a replica identity, then onlyINSERTstatements can be replicated. If you have added those tables to thedefaultreplication set automatically through thereplication_set_add_all_tablesfunction, then you need to manually remove them from that replication set and add them to thedefault_insert_onlyset.-- Remove the table from the **default** replication set: SELECT pglogical . replication_set_remove_table ( set_name : = 'default' , relation : = 'test_table_2' ); -- Manually add to the **default_insert_only** replication set: SELECT pglogical . replication_set_add_table ( set_name : = 'default_insert_only' , relation : = 'test_table_2' );Optionally, if you want to add the newly created tables to the replication set automatically, add the pglogical_assign_repsettrigger as suggested in thepglogicalsource .
Copy the database to the AlloyDB Omni subscriber cluster
-  Create a schema-only backup of the source database using the pg_dumputility.
-  Run the pg_dumpcommand from your AlloyDB Omni subscriber server using the IP address or endpoint of your non-AlloyDB server.pg_dump -h SERVER_IP_ADDRESS -U postgres --create --schema-only my_test_db > my_test_db.schema-only.sql
-  Import the backup into the subscriber database on the subscriber AlloyDB Omni server: Dockerdocker exec -i CONTAINER_NAME psql -h localhost -U postgres < my_test_db.schema-only.sqlPodmanpodman exec -i CONTAINER_NAME psql -h localhost -U postgres < my_test_db.schema-only.sql
This creates the database and the schema, without any of the row data. Row
data is replicated by the pglogical 
extension. Manually copy or recreate any
other users or roles that are required.
Create a node and subscription on the AlloyDB Omni subscriber database
-  Create a node on the AlloyDB Omni subscriber database. Add the password to your dsnif you choose to use password authentication.Dockerdocker exec CONTAINER_NAME psql -h localhost -U postgres -d my_test_db -c "SELECT pglogical.create_node(node_name := 'subscriber', dsn := 'host=localhost port=5432 dbname=my_test_db user=pglogical_replication'); "Podmanpodman exec CONTAINER_NAME psql -h localhost -U postgres -d my_test_db -c "SELECT pglogical.create_node(node_name := 'subscriber', dsn := 'host=localhost port=5432 dbname=my_test_db user=pglogical_replication'); "
-  Create a subscription in the subscriber database, pointing back to provider database in the AlloyDB Omni provider server. Dockerdocker exec CONTAINER_NAME psql -h localhost -U postgres -d my_test_db -c "SELECT pglogical.create_subscription(subscription_name := 'test_sub_1', provider_dsn := 'host= SERVER_IP_ADDRESS port=5432 dbname=my_test_db user=pglogical_replication password=secret'); "Podmanpodman exec CONTAINER_NAME psql -h localhost -U postgres -d my_test_db -c "SELECT pglogical.create_subscription(subscription_name := 'test_sub_1', provider_dsn := 'host= SERVER_IP_ADDRESS port=5432 dbname=my_test_db user=pglogical_replication password=secret'); "
-  Within a few seconds or minutes, the initial data should have replicated from the provider to the subscriber: Dockerdocker exec CONTAINER_NAME psql -h localhost -U postgres -d my_test_db -c "SELECT * FROM test_table_1 ORDER BY 1; "Podmanpodman exec CONTAINER_NAME psql -h localhost -U postgres -d my_test_db -c "SELECT * FROM test_table_1 ORDER BY 1; "Additional rows that are added to the provider database are also replicated in real time within seconds. 
Additional pglogical 
deployment considerations
 
 The pglogical 
extension has many advanced features that are not covered in this
document. Many of these features are applicable to your implementation. You can
consider the following advanced features:
- Conflict resolution
- Multimaster and bi-directional replication
- Inclusion of sequences
- Switchover and failover procedures

