Re: Proposal: Conflict log history table for Logical Replication
Amit Kapila <amit.kapila16@gmail.com>
From: Amit Kapila <amit.kapila16@gmail.com>
To: Dilip Kumar <dilipbalaut@gmail.com>
Cc: Masahiko Sawada <sawada.mshk@gmail.com>,
shveta malik <shveta.malik@gmail.com>, Bharath Rupireddy <bharath.rupireddyforpostgres@gmail.com>, PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2025-12-05T09:55:07Z
Lists: pgsql-hackers
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Allow logical replication conflicts to be logged to a table.
- a5918fddf10d master landed
-
Avoid orphaned objects dependencies
- 2fbb21170e90 19 (unreleased) cited
On Thu, Dec 4, 2025 at 4:20 PM Amit Kapila <amit.kapila16@gmail.com> wrote: > > Also, shall we give the option to the user where she wants to see > conflict/resolution information? One idea to achieve the same is to > provide subscription options like (a) conflict_resolution_format, the > values could be log and table for now, in future, one could extend it > to other options like xml, json, etc. (b) conflict_log_table: in this > user can specify the conflict table name, this can be optional such > that if user omits this and conflict_resolution_format is table, then > we will use internally generated table name like > pg_conflicts_<subscription_id>. > In this idea, we can keep the name of the second option as conflict_log_name instead of conflict_log_table. This can help us LOG the conflicts in a totally separate conflict file instead of in server log. Say, the user provides conflict_resolution_format as 'log' and conflict_log_name as 'conflict_report' then we can report conflicts in this separate file by appending subid to distinguish it. And, if the user gives only the first option conflict_resolution_format as 'log' then we can keep reporting the information in server log files. -- With Regards, Amit Kapila.