Re: Can we exclude errors of some particular text in Postgres log file?

From: pavan95 <pavan(dot)postgresdba(at)gmail(dot)com>
To: pgsql-admin(at)postgresql(dot)org
Subject: Re: Can we exclude errors of some particular text in Postgres log file?
Date: 2018-09-03 05:27:39
Message-ID: 1535952459485-0.post@n3.nabble.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Hi Keith,

I'm getting this error due to logical replication configured. And this error
is occurring on the Subscriber Side.

In my point of view, Logical Replication worker process is continuously
checking and trying to insert each row right from the start even if that
particular row has been already present in the table. And that's the reason
of this continuous occurring of the error.

One small doubt is if a table A has 10 records(which were inserted on the
publisher) and all the 10 records were replicated to the subscriber. Now
when I insert the 11'th record will it replicate only the last record or try
to replicate(or check if all rows have been replicated) all the rows of the
table A right from the first?? Please confirm..

If it does the latter(try to replicate all rows) then the above error will
arise as table A has replica identity(Primary key).

>>If this doesn't fit the model that is causing your duplicate key errors,
you may want to look into using a function to do your writes instead and
catch the given error in an exception block and then just ignore it.

Could you please provide me an example of accomplishing it!!

Thanks in Advance.

Regards,
Pavan

--
Sent from: http://www.postgresql-archive.org/PostgreSQL-admin-f2076596.html

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message pavan95 2018-09-03 05:28:37 Re: Heavy Logging in Subscriber side when configured Logical Replication in 10.4
Previous Message David G. Johnston 2018-09-01 16:01:46 Re: Can we exclude errors of some particular text in Postgres log file?