web-dev-qa-db-ja.com

pglogicalを使用したPostgreSQL論理レプリケーション

Postgresql v9.5でPglogicalを使用して論理レプリケーションをテストしています。

シンプルな構成で問題はないようです。その意味は:

  • 2つのノードに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
_

よろしくお願いします。

3
Mika

サブスクライバーノードのテーブルとスキーマ名は、プロバイダーノードと同じである必要があります。以下では、2つのノード間で名前が異なる場合のエラーメッセージ:

>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

レプリケーションが機能しています。

2
Mika