Re: Regarding logical replication issues with PostgreSQL versions 16and above - Mailing list pgsql-general

From yexiu-glory
Subject Re: Regarding logical replication issues with PostgreSQL versions 16and above
Date
Msg-id tencent_E04ABD6C09BE6D0FE0302F54A1DF5C6F1E08@qq.com
Whole thread Raw
In response to Re: Regarding logical replication issues with PostgreSQL versions 16 and above  ("DINESH NAIR" <Dinesh_Nair@iitmpravartak.net>)
Responses Re: Regarding logical replication issues with PostgreSQL versions 16and above
List pgsql-general
>>>On Fri, 2025-07-18 at 19:08 +0800, yexiu-glory wrote:
>
>>>I'm facing a problem here: our business requires logical data replication to other departments,
>>>but at the same time, sensitive fields need to be filtered out. Therefore,
>>>we used the column filtering function when creating logical replication.
>>>If we use `alter table table1 replica identity default;`, there is no issue at all.
>>> However, when encountering new business scenarios, we need to use the CSI columnar index function.
>>>Under the default setting, the synchronization delay of the CSI columnar index is severe.
>>>Therefore, we need to use `alter table table1 replica identity full;`
>>>so that the CSI columnar index can perform data comparison and only convert changed data when receiving data,
>>>thereby speeding up the data conversion efficiency of the CSI columnar index. However,
>>>after using `alter table table1 replica identity full;`, updating the table will result in an error.
>>>ERROR: cannot update table "table1" DETAIL: The column list used by the publication does not cover the replica identity.
>>>So, is there any solution to this problem, or is there a better approach to accelerate the conversion efficiency of the CSI columnar index.
>>>
>>>
>>On On Fri, 2025-07-18 at 21:40 +0800, laurenz.albe wrote:
>>I cannot help with that CSI thing.
>>The only workaround I can think of is to create an index on the >publisher that
>>contains all the columns you need in the replica identity and then ?>using
>>that with ALTER TABLE ... REPLICA IDENTITY USING INDEX ...
>>
>>Yours,
>>Laurenz Albe

> On Fri, 2025-07-28 at 14:06 +0800,dinesh_nair write:
>  For the logical treplication issues we can try this out :
> 1.Create a unique index on a non-sensitive and  non-null column field
> Or create Surrogate Primary Key
> 2.Use that index as the REPLICA IDENTITY.


The approach of adding unique indexes is not suitable for our business.
Even if it is applicable to some individual tables, it is not suitable for all tables.
My idea is whether it is possible to synchronize only the data of all columns that are filtered
and retained based on the configuration of the filter columns during full synchronization.

pgsql-general by date:

Previous
From: Laurenz Albe
Date:
Subject: Re: Get info about the index
Next
From: Igor Korot
Date:
Subject: Re: Get info about the index