Обсуждение: [MASSMAIL]server log error on conflict do nothing

Поиск
Список
Период
Сортировка

[MASSMAIL]server log error on conflict do nothing

От
Claudio Nasuti
Дата:
Dear Admins,
we have a couple of concurrent application that sometimes goes in conflict performing an insert 
in a table.
At client side they are managed with clause "on conflict do nothing" and work perfeclty.
That said when the conflict happens it is reported in the postgresql server log.
I would like to know (I was unable to find the info in the documentation nor in the maillist archive) 
if it is possible to configure the server to avoid that these "managed" conflict are reported as error in the server log.
Thanks in advance for your support

Claudio
   

Re: server log error on conflict do nothing

От
Laurenz Albe
Дата:
On Fri, 2024-04-05 at 13:10 +0200, Claudio Nasuti wrote:
> we have a couple of concurrent application that sometimes goes in conflict performing an insert 
> in a table.
> At client side they are managed with clause "on conflict do nothing" and work perfeclty.
> That said when the conflict happens it is reported in the postgresql server log.
> I would like to know (I was unable to find the info in the documentation nor in the maillist archive) 
> if it is possible to configure the server to avoid that these "managed" conflict are reported as error in the server
log.

That cannot be.

It must be some other constraint violations you see in the log.

Normally all errors will reach the client, unless you catch them
with an exception handler in PL/pgSQL code.

Yours,
Laurenz Albe