pgsql: Improve stability of recovery test 035_standby_logical_decoding

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема pgsql: Improve stability of recovery test 035_standby_logical_decoding
Дата
Msg-id E1rS9cD-002gn6-JR@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Improve stability of recovery test 035_standby_logical_decoding

This commit tweaks a couple of things in 035_standby_logical_decoding to
hopefully stabilize it:
- Autovacuum is now disabled, as it could hold a global xmin with a
transaction.
- Conflicts are generated with command sequences that removed rows (on
catalogs, shared or non-shared, or just plain relations) followed by a
VACUUM.  This was unstable because these did not check that the horizon
moved between the SQL commands and the VACUUM.  The logic is refactored
as follows, to ensure that VACUUM removes dead rows before testing for
slot invalidation on a standby (idea suggested by Andres Freund):
-- Grab the current horizon.
-- Launch SQL commands removing rows.
-- Check that the snapshot horizon has been updated.
-- Launch VACUUM on the relation whose rows have been removed by the
first step.

Note that there are still some issues because of standby snapshot WAL
records generated by the bgwriter, but this makes the test much more
stable.

Per reports from buildfarm members dikkop and skink, with analysis and
tests from Alexander Lakhin.

While on it, fix a couple of incorrect comments.

Author: Bertrand Drouvot
Reviewed-by: Alexander Lakhin, Michael Paquier
Discussion: https://postgr.es/m/OSZPR01MB6310ED3CEDB531BCEDBC6AF2FD479@OSZPR01MB6310.jpnprd01.prod.outlook.com
Discussion: https://postgr.es/m/bf67e076-b163-9ba3-4ade-b9fc51a3a8f6@gmail.com
Backpatch-through: 16

Branch
------
REL_16_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/cae25d110e0898df2df4fe31fdc45208554ac908

Modified Files
--------------
.../recovery/t/035_standby_logical_decoding.pl     | 90 ++++++++++++++--------
1 file changed, 56 insertions(+), 34 deletions(-)


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

Предыдущее
От: David Rowley
Дата:
Сообщение: pgsql: Add better handling of redundant IS [NOT] NULL quals
Следующее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Generate syscache info from catalog files