ローカルマシンで、最新のpostgres.appにアップグレードしてバージョン10を取得しました。これを行う前に、9.6データベースでpg_dumpallを実行し、バージョン10をインストールした後、スクリプトを実行してデータベース、ユーザー、 etc ...また、dumpallからスクリプトを実行した後、wal_levelをlogicalに変更し、一部のロギング設定を更新しました。
最初にdot
データベースにサブスクリプションを作成しました(スーパーユーザーとして)
bill=# \connect dot;
You are now connected to database "dot" as user "bill".
dot=# create publication foo for table dot.item;
CREATE PUBLICATION
アイテムテーブルには約3万9千行があるため、データの同期にそれほど長い時間はかかりません。
次に、dot
データベースと同じユーザーが所有するdot2
という新しいデータベースを作成し、dot
にあるのと同じスキーマに空のアイテムテーブルを作成しましたデータベースを作成してから、他のデータベースのパブリケーションを(スーパーユーザーとしても)サブスクライブしようとしました。
bill=# \connect dot2;
You are now connected to database "dot2" as user "bill".
dot2=# create subscription bar connection 'Host=localhost port=5432 dbname=dot connect_timeout=10' PUBLICATION foo;
ただし、これはハングします。戻りません。
私のログでは、私が見るすべてはこれです...
2017-11-26 21:36:52.828 EST bill@dot2 54567 [local] STATEMENT: create subscription bar connection 'Host=localhost port=5432 dbname=dot connect_timeout=10' PUBLICATION foo;
2017-11-26 21:36:55.122 EST bill@dot 54978 ::1(61990) LOG: duration: 9.328 ms statement: SELECT DISTINCT t.schemaname, t.tablename
FROM pg_catalog.pg_publication_tables t
WHERE t.pubname IN ('foo')
2017-11-26 21:36:55.126 EST bill@dot 54978 ::1(61990) LOG: logical decoding found initial starting point at 0/4584A5A8
2017-11-26 21:36:55.126 EST bill@dot 54978 ::1(61990) DETAIL: Waiting for transactions (approximately 1) older than 1613 to end.
Pg_stat_activity(免責事項-私がここで何をしているのかわからない)を調べようとすると、パブリッシュデータベースにこれが表示されます...
編集 pg_stateから詳細を追加します。 (一部の)簡潔にするためにnull値が省略されています。
dot=# select * from pg_stat_activity;
-[ RECORD 1 ]----+-------------------------------------------------------------------------------------------------------------
pid | 54323
backend_start | 2017-11-26 21:04:40.467211-05
wait_event_type | Activity
wait_event | AutoVacuumMain
backend_type | autovacuum launcher
-[ RECORD 2 ]----+-------------------------------------------------------------------------------------------------------------
pid | 54325
usesysid | 10
usename | postgres
backend_start | 2017-11-26 21:04:40.467857-05
wait_event_type | Activity
wait_event | LogicalLauncherMain
backend_type | background worker
-[ RECORD 3 ]----+-------------------------------------------------------------------------------------------------------------
datid | 16391
datname | dot
pid | 54978
usesysid | 16384
usename | bill
application_name | bar
client_addr | ::1
client_port | 61990
backend_start | 2017-11-26 21:36:55.110362-05
xact_start |
query_start | 2017-11-26 21:36:55.113552-05
state_change | 2017-11-26 21:36:55.122976-05
wait_event_type | Lock
wait_event | transactionid
state | idle
query | SELECT DISTINCT t.schemaname, t.tablename +
| FROM pg_catalog.pg_publication_tables t +
| WHERE t.pubname IN ('foo')
backend_type | walsender
-[ RECORD 4 ]----+-------------------------------------------------------------------------------------------------------------
datid | 16391
datname | dot
pid | 54533
usesysid | 16384
usename | bill
application_name | psql
client_port | -1
backend_start | 2017-11-26 21:07:00.309111-05
xact_start | 2017-11-26 22:16:11.140318-05
query_start | 2017-11-26 22:16:11.140318-05
state_change | 2017-11-26 22:16:11.140321-05
state | active
backend_xmin | 1612
query | select * from pg_stat_activity;
backend_type | client backend
-[ RECORD 5 ]----+-------------------------------------------------------------------------------------------------------------
datid | 18611
datname | dot2
pid | 54567
usesysid | 16384
usename | bill
application_name | psql
client_port | -1
backend_start | 2017-11-26 21:09:12.969232-05
xact_start | 2017-11-26 21:36:55.106831-05
query_start | 2017-11-26 21:36:55.106831-05
state_change | 2017-11-26 21:36:55.106835-05
wait_event_type | Client
wait_event | LibPQWalReceiverReceive
state | active
backend_xid | 1612
backend_xmin | 1612
query | create subscription bar connection 'Host=localhost port=5432 dbname=dot connect_timeout=10' PUBLICATION foo;
backend_type | client backend
-[ RECORD 6 ]----+-------------------------------------------------------------------------------------------------------------
pid | 54321
backend_start | 2017-11-26 21:04:40.466525-05
wait_event_type | Activity
wait_event | BgWriterMain
backend_type | background writer
-[ RECORD 7 ]----+-------------------------------------------------------------------------------------------------------------
pid | 54320
backend_start | 2017-11-26 21:04:40.466302-05
wait_event_type | Activity
wait_event | CheckpointerMain
backend_type | checkpointer
-[ RECORD 8 ]----+-------------------------------------------------------------------------------------------------------------
pid | 54322
backend_start | 2017-11-26 21:04:40.466712-05
wait_event_type | Activity
wait_event | WalWriterMain
backend_type | walwriter
リクエストに応じてpg_locksを追加します。この場合も、null値は省略されます。
dot=# select * from pg_locks;
-[ RECORD 1 ]------+-----------------
locktype | relation
database | 18611
relation | 6102
virtualtransaction | 5/16
pid | 54567
mode | RowExclusiveLock
granted | t
fastpath | t
-[ RECORD 2 ]------+-----------------
locktype | relation
database | 18611
relation | 18635
virtualtransaction | 5/16
pid | 54567
mode | AccessShareLock
granted | t
fastpath | t
-[ RECORD 3 ]------+-----------------
locktype | virtualxid
virtualxid | 5/16
virtualtransaction | 5/16
pid | 54567
mode | ExclusiveLock
granted | t
fastpath | t
-[ RECORD 4 ]------+-----------------
locktype | relation
database | 16391
relation | 11577
virtualtransaction | 4/21
pid | 54533
mode | AccessShareLock
granted | t
fastpath | t
-[ RECORD 5 ]------+-----------------
locktype | virtualxid
virtualxid | 4/21
virtualtransaction | 4/21
pid | 54533
mode | ExclusiveLock
granted | t
fastpath | t
-[ RECORD 6 ]------+-----------------
locktype | transactionid
transactionid | 1612
virtualtransaction | 5/16
pid | 54567
mode | ExclusiveLock
granted | t
fastpath | f
-[ RECORD 7 ]------+-----------------
locktype | object
database | 0
classid | 6100
objid | 18661
objsubid | 0
virtualtransaction | 5/16
pid | 54567
mode | AccessShareLock
granted | t
fastpath | f
-[ RECORD 8 ]------+-----------------
locktype | transactionid
transactionid | 1612
virtualtransaction | 3/0
pid | 54978
mode | ShareLock
granted | f
fastpath | f
-[ RECORD 9 ]------+-----------------
locktype | relation
database | 0
relation | 6100
virtualtransaction | 5/16
pid | 54567
mode | RowExclusiveLock
granted | t
fastpath | f
-[ RECORD 10 ]-----+-----------------
locktype | object
database | 0
classid | 1260
objid | 16384
objsubid | 0
virtualtransaction | 5/16
pid | 54567
mode | AccessShareLock
granted | t
fastpath | f
データベースを再起動してみましたが、データベースに接続する可能性のあるすべてのプロセスをシャットダウンしました。私が使用している唯一の接続は、pubデータベースとsubデータベースの両方への接続に使用している2つのpsqlインスタンスです。
なぜこれが発生するのか、それがなぜ待機しているのかを理解するために何を見なければならないのか?
the docs から:
同じデータベースクラスターに接続するサブスクリプションの作成(たとえば、同じクラスター内のデータベース間で複製する、または同じデータベース内で複製する)は、複製スロットが同じコマンドの一部として作成されていない場合にのみ成功します。そうしないと、CREATE SUBSCRIPTION呼び出しがハングします。これを機能させるには、レプリケーションスロットを個別に作成し(関数pg_create_logical_replication_slotをプラグイン名pgoutputで使用)、パラメーターcreate_slot = falseを使用してサブスクリプションを作成します。これは、将来のリリースで解除される可能性のある実装上の制限です。