pgsql: Optionally disable subscriptions on error.

Поиск
Список
Период
Сортировка
От Amit Kapila
Тема pgsql: Optionally disable subscriptions on error.
Дата
Msg-id E1nTc6H-000f9J-Ld@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Optionally disable subscriptions on error.

Logical replication apply workers for a subscription can easily get stuck
in an infinite loop of attempting to apply a change, triggering an error
(such as a constraint violation), exiting with the error written to the
subscription server log, and restarting.

To partially remedy the situation, this patch adds a new subscription
option named 'disable_on_error'. To be consistent with old behavior, this
option defaults to false. When true, both the tablesync worker and apply
worker catch any errors thrown and disable the subscription in order to
break the loop. The error is still also written in the logs.

Once the subscription is disabled, users can either manually resolve the
conflict/error or skip the conflicting transaction by using
pg_replication_origin_advance() function. After resolving the conflict,
users need to enable the subscription to allow apply process to proceed.

Author: Osumi Takamichi and Mark Dilger
Reviewed-by: Greg Nancarrow, Vignesh C, Amit Kapila, Wang wei, Tang Haiying, Peter Smith, Masahiko Sawada, Shi Yu
Discussion : https://postgr.es/m/DB35438F-9356-4841-89A0-412709EBD3AB%40enterprisedb.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/705e20f8550c0e8e47c0b6b20b5f5ffd6ffd9e33

Modified Files
--------------
doc/src/sgml/catalogs.sgml                      |  10 ++
doc/src/sgml/logical-replication.sgml           |   5 +-
doc/src/sgml/ref/alter_subscription.sgml        |   4 +-
doc/src/sgml/ref/create_subscription.sgml       |  12 ++
src/backend/catalog/pg_subscription.c           |  40 ++++++
src/backend/catalog/system_views.sql            |   3 +-
src/backend/commands/subscriptioncmds.c         |  27 +++-
src/backend/replication/logical/worker.c        | 162 +++++++++++++++++-------
src/bin/pg_dump/pg_dump.c                       |  14 +-
src/bin/pg_dump/pg_dump.h                       |   1 +
src/bin/psql/describe.c                         |  10 +-
src/bin/psql/tab-complete.c                     |   4 +-
src/include/catalog/catversion.h                |   2 +-
src/include/catalog/pg_subscription.h           |   7 +
src/test/regress/expected/subscription.out      | 119 ++++++++++-------
src/test/regress/sql/subscription.sql           |  15 +++
src/test/subscription/t/029_disable_on_error.pl |  94 ++++++++++++++
17 files changed, 421 insertions(+), 108 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix bogus tab-completion queries.
Следующее
От: Robert Haas
Дата:
Сообщение: pgsql: Support "of", "tzh", and "tzm" format codes.