Re: question on audit columns

From: Muhammad Usman Khan <usman(dot)k(at)bitnine(dot)net>
To: yudhi s <learnerdatabase99(at)gmail(dot)com>
Cc: pgsql-general <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: question on audit columns
Date: 2024-09-04 12:58:56
Message-ID: CAPnRvGvHAC8HjLCZ2uUBCRZ7=fMJnkTPd3cBOchJu-Vn7G2MHg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi,

In your scenario, triggers can add some overhead since they require extra
processing after each update operation. Considering the size of your table
and the high transaction volume, you need to observe that this might
significantly affect performance.

On Wed, 4 Sept 2024 at 17:50, yudhi s <learnerdatabase99(at)gmail(dot)com> wrote:

> Hello,
> In postgres database , we have all the tables with audit columns like
> created_by_user, created_timestamp,updated_by_user, updated_timestamp. So
> we have these fields that were supposed to be populated by the time at
> which the insert/update operation happened on the database but not at the
> application level. So we are planning to populate the created_by_user,
> created_timestamp columns by setting a default value of "current_timestamp"
> and "current_user" for the two columns, but no such this is available to
> populate while we do the update of the row, so the only option seems to be
> through a trigger.
>
> So wanted to check with the experts here ,considering the table will be
> DML heavy table (300M+ transactions will be inserted daily), Is is okay to
> have the trigger for this table for populating all the audit columns or
> should we keep default for created_by_user, created_timestamp and just
> trigger for the update related two audit column? Basically wanted to see,
> if the default value does the same thing as a trigger or it does something
> more optimally than trigger?
>
> Regards
> Yudhi
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message yudhi s 2024-09-04 13:10:04 Re: question on audit columns
Previous Message yudhi s 2024-09-04 12:49:47 question on audit columns