Re: BUG #17690: Nonresponsive client on replica can halt replication indefinitely

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема Re: BUG #17690: Nonresponsive client on replica can halt replication indefinitely
Дата
Msg-id 30909ba9-7a97-4ee0-b86d-3c75b1acf77e@iki.fi
обсуждение исходный текст
Ответ на BUG #17690: Nonresponsive client on replica can halt replication indefinitely  (PG Bug reporting form <noreply@postgresql.org>)
Ответы Re: BUG #17690: Nonresponsive client on replica can halt replication indefinitely  (Jacob Baskin <jacob.baskin@gmail.com>)
Список pgsql-bugs
Sorry for the very late response, I happened to notice this just now 
while browsing for bugs that got no answers.

On 18/11/2022 21:21, PG Bug reporting form wrote:
> The following bug has been logged on the website:
> 
> Bug reference:      17690
> Logged by:          Jacob Baskin
> Email address:      jacob.baskin@gmail.com
> PostgreSQL version: 13.0
> Operating system:   Linux (CentOS 7)
> Description:
> 
> We have discovered that a badly-behaved client connected to a database hot
> replica can indefinitely block replication from progressing. The client's
> back-end gets into a state where it does not stop when the recovery process
> tries to cancel conflicting queries, as long as there is still pending data
> to be written.
> 
> To trigger this, the client needs to be:
> - Actively running a query which conflicts with recovery
> - Not reading data from its socket about query results (e.g., run "select *
> from large_table" in psql and then Ctrl-Z as results are being streamed)
> 
> We believe this failure mode is deterministic. This bug definitely affects
> postgres 13, and we believe it is still present in HEAD. We are running
> Linux (Centos 7).
> 
> The sequence of events is as follows:
> 
> 1. Postmaster tries to kill a connection that conflicts with recovery
> (standby.c:393)
> 2. The connection process gets SIGUSR1.
> 3. This invokes RecoveryConflictInterrupt, which sets QueryCancelPending,
> but NOT (generally) ProcDiePending (postgres.c:3039)
> 4. The connection process repeatedly processes ProcessClientWriteInterrupt,
> which will handle interrupts if ProcDiePending is set but not otherwise
> (postgres.c:526)

Yes, I concur that's a problem.

> We believe the appropriate fix is to check for RecoveryConflictPending in
> addition to ProcDiePending on postgres.c:526.
> 
> This fix would be a one-line patch which we are happy to submit but first
> want to make sure that this is the correct approach.

That makes sense at quick glance, although you need to be careful to not 
mess with the protocol state by erroring out in the middle of writing a 
message to the socket. There is some protection against that, see 
PqCommBusy in pqcomm.c, but I'm not sure if it can get the connection to 
a sane state if you error out from ProcessClientWriteInterrupt. That's 
not a problem for ProcDiePending because the connection is being killed 
anyway, but with a recovery conflict you only want to cancel the running 
query.

-- 
Heikki Linnakangas
Neon (https://neon.tech)




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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #17855: Uninitialised memory used when the name type value processed in binary mode of Memoize
Следующее
От: Jacob Baskin
Дата:
Сообщение: Re: BUG #17690: Nonresponsive client on replica can halt replication indefinitely