Re: Autovacuum------Doubts - Mailing list pgsql-admin

From Laurenz Albe
Subject Re: Autovacuum------Doubts
Date
Msg-id 70109b120e8f26fa29c1d0003a729639a5dec196.camel@cybertec.at
Whole thread Raw
In response to [MASSMAIL]Autovacuum------Doubts  (jaya kumar <kumardba27@gmail.com>)
Responses Re: Autovacuum------Doubts
List pgsql-admin
On Mon, 2024-04-08 at 14:57 +0530, jaya kumar wrote:
> autovacuum_analyze_threshold and autovacuum_vacuum_threshold both parameter
> values set from 50 to 20.
>
> Created one table with 100 records. First, we deleted 21 records. after an
> autovacuum does not happen automatically. After again I deleted another 20.
> Out of 100 we delectated 40 records then the autovacuum happened automatically.
> As per the configuration Autocacuum will automatically delete 21 records
> in the table but my case does not happen.
>
> Can someone check and explain this.

The threshold is

  autovacuum_vacuum_threshold + autovacuum_vacuum_scale_factor * number of table rows

So since you have set autovacuum_vacuum_scale_factor to 0.1 and there are 100 rows,
you need to delete 20 + 100 * 0.1 = 30 rows before autovacuum kicks in.

Yours,
Laurenz Albe



pgsql-admin by date:

Previous
From: jaya kumar
Date:
Subject: [MASSMAIL]Autovacuum------Doubts
Next
From: Laurenz Albe
Date:
Subject: Re: Work_mem