pgsql: When WalSndCaughtUp, sleep only in WalSndWaitForWal().

Поиск
Список
Период
Сортировка
От Noah Misch
Тема pgsql: When WalSndCaughtUp, sleep only in WalSndWaitForWal().
Дата
Msg-id E1jNK2f-0000Vx-Fr@gemulon.postgresql.org
обсуждение исходный текст
Ответы Re: pgsql: When WalSndCaughtUp, sleep only in WalSndWaitForWal().  (Fujii Masao <masao.fujii@oss.nttdata.com>)
Список pgsql-committers
When WalSndCaughtUp, sleep only in WalSndWaitForWal().

Before sleeping, WalSndWaitForWal() sends a keepalive if MyWalSnd->write
< sentPtr.  That is important in logical replication.  When the latest
physical LSN yields no logical replication messages (a common case),
that keepalive elicits a reply, and processing the reply updates
pg_stat_replication.replay_lsn.  WalSndLoop() lacks that; when
WalSndLoop() slept, replay_lsn advancement could stall until
wal_receiver_status_interval elapsed.  This sometimes stalled
src/test/subscription/t/001_rep_changes.pl for up to 10s.

Discussion: https://postgr.es/m/20200406063649.GA3738151@rfd.leadboat.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/421685812290406daea58b78dfab0346eb683bbb

Modified Files
--------------
src/backend/replication/walsender.c | 21 ++++++++-------------
1 file changed, 8 insertions(+), 13 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Clear dangling pointer to avoid bogus EXPLAIN printout in a corn
Следующее
От: Tom Lane
Дата:
Сообщение: Re: pgsql: Support FETCH FIRST WITH TIES