Regarding publish_via_partiton_root with pglogical

Lists: pgsql-generalpgsql-in-general
From: Durgamahesh Manne <maheshpostgres9(at)gmail(dot)com>
To: pgsql-general(at)lists(dot)postgresql(dot)org, pgsql-in-general(at)postgresql(dot)org
Subject: Regarding publish_via_partiton_root with pglogical
Date: 2024-07-20 07:01:04
Message-ID: CAJCZkoLW8vhWbB6BZophZvkg2BmkpqbYj39kiYVdy9td5eQJQg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general pgsql-in-general

Hi

Respected Team

I know the use case of implementing the partitions with publication and
subscription of built-in logical replication
CREATE PUBLICATION dbz_publication FOR TABLE betplacement.bet WITH
(publish_via_partition_root = true); This will use parent table to replica
data changes to target from source
But
Could you please provide a logic to implement the same with pglogical ?
Do i need to add this publish_via_partition_root to
pglogical.replication_set_add_table functionality ?
you response is valuable in this aspect

Regards,
Durga Mahesh


From: khan Affan <bawag773(at)gmail(dot)com>
To: Durgamahesh Manne <maheshpostgres9(at)gmail(dot)com>
Cc: pgsql-general(at)lists(dot)postgresql(dot)org, pgsql-in-general(at)postgresql(dot)org
Subject: Re: Regarding publish_via_partiton_root with pglogical
Date: 2024-07-22 10:04:51
Message-ID: CAF4emOkmPQLUDfKM5W5wov3aEVBzLdiJNLizDEAjLPgTDzQ=sQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general pgsql-in-general

Hi Durgamahesh

In pglogical extension, there is no direct equivalent to the
publish_via_partition_root option found in the built-in logical replication

you can achieve similar results when a new partition is added; you must add
it to the replication set using pglogical.replication_set_add_table.
Similarly existing partitions are reorganized or split, ensure to update
the replication sets accordingly.

Thanks & Regards

*Muhammad Affan (*아판*)*

*PostgreSQL Technical Support Engineer** / Pakistan R&D*

Interlace Plaza 4th floor Twinhub office 32 I8 Markaz, Islamabad, Pakistan

On Sat, Jul 20, 2024 at 12:00 PM Durgamahesh Manne <
maheshpostgres9(at)gmail(dot)com> wrote:

> Hi
>
> Respected Team
>
> I know the use case of implementing the partitions with publication and
> subscription of built-in logical replication
> CREATE PUBLICATION dbz_publication FOR TABLE betplacement.bet WITH
> (publish_via_partition_root = true); This will use parent table to replica
> data changes to target from source
> But
> Could you please provide a logic to implement the same with pglogical ?
> Do i need to add this publish_via_partition_root to
> pglogical.replication_set_add_table functionality ?
> you response is valuable in this aspect
>
> Regards,
> Durga Mahesh
>


From: Durgamahesh Manne <maheshpostgres9(at)gmail(dot)com>
To:
Cc: pgsql-general(at)lists(dot)postgresql(dot)org, pgsql-in-general(at)postgresql(dot)org
Subject: Re: Regarding publish_via_partiton_root with pglogical
Date: 2024-09-28 05:39:51
Message-ID: CAJCZkoL4x6M__wwEXJnrve09vEVegCDwTmDCt1O4KitFF1xynQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general pgsql-in-general

Hi

Any inputs from the PGDG team members regarding this ?

Regards
Durga Mahesh

On Mon, Jul 22, 2024 at 3:35 PM khan Affan <bawag773(at)gmail(dot)com> wrote:

> Hi Durgamahesh
>
> In pglogical extension, there is no direct equivalent to the
> publish_via_partition_root option found in the built-in logical replication
>
> you can achieve similar results when a new partition is added; you must
> add it to the replication set using pglogical.replication_set_add_table.
> Similarly existing partitions are reorganized or split, ensure to update
> the replication sets accordingly.
>
> Thanks & Regards
>
>
> *Muhammad Affan (*아판*)*
>
> *PostgreSQL Technical Support Engineer** / Pakistan R&D*
>
> Interlace Plaza 4th floor Twinhub office 32 I8 Markaz, Islamabad, Pakistan
>
> On Sat, Jul 20, 2024 at 12:00 PM Durgamahesh Manne <
> maheshpostgres9(at)gmail(dot)com> wrote:
>
>> Hi
>>
>> Respected Team
>>
>> I know the use case of implementing the partitions with publication and
>> subscription of built-in logical replication
>> CREATE PUBLICATION dbz_publication FOR TABLE betplacement.bet WITH
>> (publish_via_partition_root = true); This will use parent table to replica
>> data changes to target from source
>> But
>> Could you please provide a logic to implement the same with pglogical ?
>> Do i need to add this publish_via_partition_root to
>> pglogical.replication_set_add_table functionality ?
>> you response is valuable in this aspect
>>
>> Regards,
>> Durga Mahesh
>>
>


From: Greg Sabino Mullane <htamfids(at)gmail(dot)com>
To: Durgamahesh Manne <maheshpostgres9(at)gmail(dot)com>
Cc: pgsql-general(at)lists(dot)postgresql(dot)org, pgsql-in-general(at)postgresql(dot)org
Subject: Re: Regarding publish_via_partiton_root with pglogical
Date: 2024-09-28 15:00:34
Message-ID: CAKAnmmKCXhnWNBBQDBWXDdLxQJPWR2j6tPCHjCJYMArco3SM5g@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general pgsql-in-general

Please do not spam the mailing lists with requests for follow ups. In this
particular case, you received an answer two days after you posted it. It
went to both psql-general, pgsql-in-general, and to you directly, so there
seems little excuse for missing it.

Also note that pglogical is a third-party extension and as such you may
have more success in the future asking the maintainers of it via its github
page (as I see you have done, although in a somewhat impolite way:
https://github.com/2ndQuadrant/pglogical/issues/487)

Cheers,
Greg


From: Durgamahesh Manne <maheshpostgres9(at)gmail(dot)com>
To: Greg Sabino Mullane <htamfids(at)gmail(dot)com>
Cc: pgsql-in-general(at)postgresql(dot)org
Subject: Re: Regarding publish_via_partiton_root with pglogical
Date: 2024-09-28 16:55:29
Message-ID: CAJCZko+PVv526=TpexfwJ17D3rZaS1tDT0z-ufTeS1oX-dxXQw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general pgsql-in-general

Hey Greg

Thank you

Regards,
Durga Mahesh

On Sat, 28 Sept, 2024, 20:31 Greg Sabino Mullane, <htamfids(at)gmail(dot)com>
wrote:

> Please do not spam the mailing lists with requests for follow ups. In this
> particular case, you received an answer two days after you posted it. It
> went to both psql-general, pgsql-in-general, and to you directly, so there
> seems little excuse for missing it.
>
> Also note that pglogical is a third-party extension and as such you may
> have more success in the future asking the maintainers of it via its github
> page (as I see you have done, although in a somewhat impolite way:
> https://github.com/2ndQuadrant/pglogical/issues/487)
>
> Cheers,
> Greg
>
>