"Multiple table synchronizations are processed serially" still happens

Started by Guillaume Lelargeover 4 years ago8 messages
#1Guillaume Lelarge
guillaume@lelarge.info
1 attachment(s)

Hi,

One of my customers has an issue with logical replication. As $SUBJECT
says, multiple table synchronization happens serially. To be honest, it
doesn't do this every time. It happens when the tables are big enough.

This issue was already described on this thread (from 2017):
/messages/by-id/CAD21AoC2KJdavS7MFffmSsRc1dn3Vg_0xmuc=UpBrZ-_MUxh-Q@mail.gmail.com

This thread was closed by a commit (
https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=6c2003f8a1bbc7c192a2e83ec51581c018aa162f)
which apparently fixed the issue for the OP.

Attached is a small test case where it still happens for me on 12.6, 11.11,
and 10.16. I can't make it happen on 13.2. I don't know why. It may imply
bigger tables for 13.2, but why? I simply don't know.

Anyway, the issue at the end of the test case is that synchronizations
sometimes happen serially. You can see on the process list that one
walsender process is waiting in "idle in transaction" state:

guillau+ 486822 2227 0 10:44 ? 00:00:00
/opt/postgresql/12/bin/postgres
guillau+ 486824 486822 0 10:44 ? 00:00:01 postgres: testcase:
checkpointer
guillau+ 486825 486822 0 10:44 ? 00:00:04 postgres: testcase:
background writer
guillau+ 486826 486822 1 10:44 ? 00:00:06 postgres: testcase:
walwriter
guillau+ 486827 486822 0 10:44 ? 00:00:00 postgres: testcase:
autovacuum launcher
guillau+ 486828 486822 0 10:44 ? 00:00:00 postgres: testcase:
stats collector
guillau+ 486829 486822 0 10:44 ? 00:00:00 postgres: testcase:
logical replication launcher
guillau+ 489822 486822 0 10:55 ? 00:00:00 postgres: testcase:
logical replication worker for subscription 16436
guillau+ 489824 486822 10 10:55 ? 00:00:01 postgres: testcase:
walsender repuser ::1(38770) idle
guillau+ 489825 486822 22 10:55 ? 00:00:02 postgres: testcase:
logical replication worker for subscription 16436 sync 16416
guillau+ 489826 486822 8 10:55 ? 00:00:00 postgres: testcase:
walsender repuser ::1(38772) COPY
guillau+ 489827 486822 0 10:55 ? 00:00:00 postgres: testcase:
logical replication worker for subscription 16436 sync 16427
guillau+ 489828 486822 0 10:55 ? 00:00:00 postgres: testcase:
walsender repuser ::1(38774) idle in transaction waiting

And the log says (from the start of the subscription):

2021-04-28 10:55:32.337 CEST [489822] LOG: logical replication apply
worker for subscription "sub" has started
2021-04-28 10:55:32.342 CEST [489824] LOG: duration: 0.426 ms statement:
SELECT pg_catalog.set_config('search_path', '', false);
2021-04-28 10:55:32.342 CEST [489824] LOG: received replication command:
IDENTIFY_SYSTEM
2021-04-28 10:55:32.342 CEST [489824] LOG: received replication command:
START_REPLICATION SLOT "sub" LOGICAL 0/0 (proto_version '1',
publication_names '"pub"')
2021-04-28 10:55:32.342 CEST [489824] LOG: starting logical decoding for
slot "sub"
2021-04-28 10:55:32.342 CEST [489824] DETAIL: Streaming transactions
committing after 1/FF5D8130, reading WAL from 1/FF5D80F8.
2021-04-28 10:55:32.342 CEST [489824] LOG: logical decoding found
consistent point at 1/FF5D80F8
2021-04-28 10:55:32.342 CEST [489824] DETAIL: There are no running
transactions.
2021-04-28 10:55:32.345 CEST [489825] LOG: logical replication table
synchronization worker for subscription "sub", table "foo" has started
2021-04-28 10:55:32.348 CEST [489826] LOG: duration: 0.315 ms statement:
SELECT pg_catalog.set_config('search_path', '', false);
2021-04-28 10:55:32.349 CEST [489826] LOG: duration: 0.041 ms statement:
BEGIN READ ONLY ISOLATION LEVEL REPEATABLE READ
2021-04-28 10:55:32.349 CEST [489826] LOG: received replication command:
CREATE_REPLICATION_SLOT "sub_16436_sync_16416" TEMPORARY LOGICAL pgoutput
USE_SNAPSHOT
2021-04-28 10:55:32.355 CEST [489827] LOG: logical replication table
synchronization worker for subscription "sub", table "bar" has started
2021-04-28 10:55:32.359 CEST [489828] LOG: duration: 0.431 ms statement:
SELECT pg_catalog.set_config('search_path', '', false);
2021-04-28 10:55:32.359 CEST [489828] LOG: duration: 0.048 ms statement:
BEGIN READ ONLY ISOLATION LEVEL REPEATABLE READ
2021-04-28 10:55:32.360 CEST [489828] LOG: received replication command:
CREATE_REPLICATION_SLOT "sub_16436_sync_16427" TEMPORARY LOGICAL pgoutput
USE_SNAPSHOT
2021-04-28 10:55:32.407 CEST [489826] LOG: logical decoding found
consistent point at 1/FF602880
2021-04-28 10:55:32.407 CEST [489826] DETAIL: There are no running
transactions.
2021-04-28 10:55:32.409 CEST [489826] LOG: duration: 1.262 ms statement:
SELECT c.oid, c.relreplident FROM pg_catalog.pg_class c INNER JOIN
pg_catalog.pg_namespace n ON (c.relnamespace = n.oid) WHERE
n.nspname = 's01' AND c.relname = 'foo' AND c.relkind = 'r'
2021-04-28 10:55:32.410 CEST [489826] LOG: duration: 1.347 ms statement:
SELECT a.attname, a.atttypid, a.atttypmod, a.attnum =
ANY(i.indkey) FROM pg_catalog.pg_attribute a LEFT JOIN
pg_catalog.pg_index i ON (i.indexrelid =
pg_get_replica_identity_index(16390)) WHERE a.attnum > 0::pg_catalog.int2
AND NOT a. attisdropped AND a.attgenerated = '' AND a.attrelid
= 16390 ORDER BY a.attnum
2021-04-28 10:55:32.484 CEST [489828] LOG: logical decoding found initial
starting point at 1/FF63D168
2021-04-28 10:55:32.484 CEST [489828] DETAIL: Waiting for transactions
(approximately 1) older than 503 to end.
2021-04-28 10:55:33.484 CEST [489828] LOG: process 489828 still waiting
for ShareLock on transaction 502 after 1000.103 ms
2021-04-28 10:55:33.484 CEST [489828] DETAIL: Process holding the lock:
489825. Wait queue: 489828.
2021-04-28 10:55:33.496 CEST [489828] LOG: process 489828 still waiting
for ShareLock on transaction 502 after 1012.089 ms

And it logs the "still waiting" message as long as the first table is being
synchronized. Once this is done, it releases the lock, and the
synchronization of the second table starts.

Is there something I didn't understand on the previous thread? I'd like to
know why serial synchronization happens, and if there's a way to avoid it.

Thanks.

Regards.

--
Guillaume.

Attachments:

testcase.shapplication/x-shellscript; name=testcase.shDownload
#2Guillaume Lelarge
guillaume@lelarge.info
In reply to: Guillaume Lelarge (#1)
Re: "Multiple table synchronizations are processed serially" still happens

Le mer. 28 avr. 2021 à 11:12, Guillaume Lelarge <guillaume@lelarge.info> a
écrit :

Hi,

One of my customers has an issue with logical replication. As $SUBJECT
says, multiple table synchronization happens serially. To be honest, it
doesn't do this every time. It happens when the tables are big enough.

This issue was already described on this thread (from 2017):
/messages/by-id/CAD21AoC2KJdavS7MFffmSsRc1dn3Vg_0xmuc=UpBrZ-_MUxh-Q@mail.gmail.com

This thread was closed by a commit (
https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=6c2003f8a1bbc7c192a2e83ec51581c018aa162f)
which apparently fixed the issue for the OP.

Attached is a small test case where it still happens for me on 12.6,
11.11, and 10.16. I can't make it happen on 13.2. I don't know why. It may
imply bigger tables for 13.2, but why? I simply don't know.

Actually, it also happens on 13.2.

--
Guillaume.

#3Guillaume Lelarge
guillaume@lelarge.info
In reply to: Guillaume Lelarge (#2)
Re: "Multiple table synchronizations are processed serially" still happens

Le mer. 28 avr. 2021 à 11:37, Guillaume Lelarge <guillaume@lelarge.info> a
écrit :

Le mer. 28 avr. 2021 à 11:12, Guillaume Lelarge <guillaume@lelarge.info>
a écrit :

Hi,

One of my customers has an issue with logical replication. As $SUBJECT
says, multiple table synchronization happens serially. To be honest, it
doesn't do this every time. It happens when the tables are big enough.

This issue was already described on this thread (from 2017):
/messages/by-id/CAD21AoC2KJdavS7MFffmSsRc1dn3Vg_0xmuc=UpBrZ-_MUxh-Q@mail.gmail.com

This thread was closed by a commit (
https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=6c2003f8a1bbc7c192a2e83ec51581c018aa162f)
which apparently fixed the issue for the OP.

Attached is a small test case where it still happens for me on 12.6,
11.11, and 10.16. I can't make it happen on 13.2. I don't know why. It may
imply bigger tables for 13.2, but why? I simply don't know.

Actually, it also happens on 13.2.

Ping? :)

It's been two weeks and no answer as far as I can tell. I may have missed
something on this issue but I don't see what. It's not a big deal, but I
would rather understand what's going on.

Thanks.

--
Guillaume.

#4Amit Kapila
amit.kapila16@gmail.com
In reply to: Guillaume Lelarge (#1)
Re: "Multiple table synchronizations are processed serially" still happens

On Wed, Apr 28, 2021 at 2:43 PM Guillaume Lelarge
<guillaume@lelarge.info> wrote:

And it logs the "still waiting" message as long as the first table is being synchronized. Once this is done, it releases the lock, and the synchronization of the second table starts.

Is there something I didn't understand on the previous thread?

It seems from a script that you are creating a subscription on the
same node as publication though in a different DB, right? If so, the
problem might be that copying the data of the first table creates a
transaction which blocks creation of the slot for second table copy.
The commit you referred will just fix the problem while reading the
data from the publisher not while writing data in the table in the
subscriber.

I'd like to know why serial synchronization happens, and if there's a way to avoid it.

I guess you need to create a subscription on a different node.

--
With Regards,
Amit Kapila.

#5Guillaume Lelarge
guillaume@lelarge.info
In reply to: Amit Kapila (#4)
Re: "Multiple table synchronizations are processed serially" still happens

Hi,

Le jeu. 20 mai 2021 à 12:09, Amit Kapila <amit.kapila16@gmail.com> a écrit :

On Wed, Apr 28, 2021 at 2:43 PM Guillaume Lelarge
<guillaume@lelarge.info> wrote:

And it logs the "still waiting" message as long as the first table is

being synchronized. Once this is done, it releases the lock, and the
synchronization of the second table starts.

Is there something I didn't understand on the previous thread?

It seems from a script that you are creating a subscription on the
same node as publication though in a different DB, right?

Yes, that's right.

If so, the

problem might be that copying the data of the first table creates a
transaction which blocks creation of the slot for second table copy.

I don't understand how a transaction could block the creation of a slot.
Could you explain that to me? or do you know where this is explained in the
documentation?

The commit you referred will just fix the problem while reading the

data from the publisher not while writing data in the table in the
subscriber.

I'd like to know why serial synchronization happens, and if there's a

way to avoid it.

I guess you need to create a subscription on a different node.

Thanks.

--
Guillaume.

#6Amit Kapila
amit.kapila16@gmail.com
In reply to: Guillaume Lelarge (#5)
Re: "Multiple table synchronizations are processed serially" still happens

On Fri, May 21, 2021 at 1:30 AM Guillaume Lelarge
<guillaume@lelarge.info> wrote:

If so, the
problem might be that copying the data of the first table creates a
transaction which blocks creation of the slot for second table copy.

I don't understand how a transaction could block the creation of a slot. Could you explain that to me?

During the creation of the slot, we need to build the initial snapshot
which is used for decoding WAL. Now, to build the initial snapshot, we
wait for all running xacts to finish. See functions
CreateReplicationSlot() and SnapBuildFindSnapshot().

--
With Regards,
Amit Kapila.

#7Guillaume Lelarge
guillaume@lelarge.info
In reply to: Amit Kapila (#6)
Re: "Multiple table synchronizations are processed serially" still happens

Le ven. 21 mai 2021 à 05:43, Amit Kapila <amit.kapila16@gmail.com> a écrit :

On Fri, May 21, 2021 at 1:30 AM Guillaume Lelarge
<guillaume@lelarge.info> wrote:

If so, the
problem might be that copying the data of the first table creates a
transaction which blocks creation of the slot for second table copy.

I don't understand how a transaction could block the creation of a slot.

Could you explain that to me?

During the creation of the slot

During the creation of the slot or during the creation of the subscription?
because, in my tests, I create the slot before creating the snapshot.

, we need to build the initial snapshot
which is used for decoding WAL. Now, to build the initial snapshot, we
wait for all running xacts to finish. See functions
CreateReplicationSlot() and SnapBuildFindSnapshot().

If we have two workers, both will have a snapshot? they don't share the
same snapshot?

And if all this is true, I don't see how it could work when the replication
happens between two clusters, and couldn't work when it happens with only
one cluster.

--
Guillaume.

#8Amit Kapila
amit.kapila16@gmail.com
In reply to: Guillaume Lelarge (#7)
Re: "Multiple table synchronizations are processed serially" still happens

On Fri, May 21, 2021 at 6:47 PM Guillaume Lelarge
<guillaume@lelarge.info> wrote:

Le ven. 21 mai 2021 à 05:43, Amit Kapila <amit.kapila16@gmail.com> a écrit :

On Fri, May 21, 2021 at 1:30 AM Guillaume Lelarge
<guillaume@lelarge.info> wrote:

If so, the
problem might be that copying the data of the first table creates a
transaction which blocks creation of the slot for second table copy.

I don't understand how a transaction could block the creation of a slot. Could you explain that to me?

During the creation of the slot

During the creation of the slot or during the creation of the subscription? because, in my tests, I create the slot before creating the snapshot.

But we do internally create another slot for tablesync via a
tablesync-worker that does the initial copy.

, we need to build the initial snapshot
which is used for decoding WAL. Now, to build the initial snapshot, we
wait for all running xacts to finish. See functions
CreateReplicationSlot() and SnapBuildFindSnapshot().

If we have two workers, both will have a snapshot? they don't share the same snapshot?

No, for initial tablesync, we need to build a full snapshot (see use
of CRS_USE_SNAPSHOT option in code).

And if all this is true, I don't see how it could work when the replication happens between two clusters, and couldn't work when it happens with only one cluster.

I think you might want to try this once.

--
With Regards,
Amit Kapila.