Postgresql

使用 pglogical 的 PostgreSQL 邏輯複製

  • March 15, 2018

我正在使用 Pglogical 和 Postgresql v9.5 測試邏輯複製。

簡單的配置似乎還可以。它的意思是:

  • 在兩個節點中創建 pglogical 擴展
  • 創建一個集合併將公共模式中的表添加到該集合中,
  • 創建一個節點並在另一台伺服器中創建訂閱。

但是,訂閱包含來自特定模式的表的新 replication_set 不起作用。

此命令通過(在提供程序節點中):

select pglogical.replication_set_add_all_tables(
set_name := 'new_replication_set',
schema_names := '{myschema}',
synchronize_data := 'true'
);

此命令通過(在訂閱者節點中):

select pglogical.create_subscription(
subscription_name := 'subscription',
replication_sets := array['new_replication_set'],
provider_dsn := 'host=10.20.30.40 port=6432 dbname=production user=pglogical_prod',
synchronize_data := 'true'
);

但是訂閱者節點中的表是空的。

我錯過了什麼?謝謝並恭祝安康。

附加資訊:

  • select pglogical.alter_subscription_synchronize(...)select pglogical.alter_subscription_resynchronize_table(...)發出命令,
  • 訂閱者節點中的表也在特定模式中,
  • select * from pglogical.queue;請求不為空。

以下是從訂閱者節點獲取的日誌消息:

我在訂閱者節點中設置了 log_min_message = debug5。

並在下面的錯誤消息:

792 < 2018-03-14 11:38:56.449 CET >LOG:  starting apply for subscription subscription
793 < 2018-03-14 11:38:56.449 CET >DEBUG:  StartTransaction
794 < 2018-03-14 11:38:56.449 CET >DEBUG:  name: unnamed; blockState:       DEFAULT; state: INPROGR, xid/subid/cid: 0/1    /0, nestlvl: 1, children:
795 < 2018-03-14 11:38:56.449 CET >DEBUG:  CommitTransaction
796 < 2018-03-14 11:38:56.449 CET >DEBUG:  name: unnamed; blockState:       STARTED; state: INPROGR, xid/subid/cid: 0/1    /0, nestlvl: 1, children:
797 < 2018-03-14 11:38:56.449 CET >ERROR:  subscriber subscription initialization failed during nonrecoverable step (d)    , please try the setup again
798 < 2018-03-14 11:38:56.449 CET >DEBUG:  shmem_exit(1): 2 before_shmem_exit callbacks to make
799 < 2018-03-14 11:38:56.449 CET >LOG:  apply worker [16870] at slot 1 generation 4 exiting with error
800 < 2018-03-14 11:38:56.449 CET >DEBUG:  shmem_exit(1): 6 on_shmem_exit callbacks to make
801 < 2018-03-14 11:38:56.449 CET >DEBUG:  proc_exit(1): 2 callbacks to make
802 < 2018-03-14 11:38:56.449 CET >DEBUG:  exit(1)
803 < 2018-03-14 11:38:56.449 CET >DEBUG:  shmem_exit(-1): 0 before_shmem_exit callbacks to make
804 < 2018-03-14 11:38:56.449 CET >DEBUG:  shmem_exit(-1): 0 on_shmem_exit callbacks to make
805 < 2018-03-14 11:38:56.449 CET >DEBUG:  proc_exit(-1): 0 callbacks to make
806 < 2018-03-14 11:38:56.450 CET >DEBUG:  reaping dead processes
807 < 2018-03-14 11:38:56.450 CET >LOG:  worker process: pglogical apply 16385:2875150205 (PID 16870) exited with exit     code 1

謝謝並恭祝安康。

訂閱者節點中的表和模式名稱必須與提供者節點相同。如果兩個節點之間的名稱不同,則會出現以下錯誤消息:

>LOG:  starting apply for subscription subscription
>INFO:  initializing subscriber subscription
>INFO:  synchronizing data
>ERROR:  schema "myschema" does not exist

>LOG:  starting apply for subscription subscription
>INFO:  initializing subscriber subscription
>INFO:  synchronizing data
>ERROR:  relation "myschema.tblprod2" does not exist

現在複製工作。

引用自:https://dba.stackexchange.com/questions/200091