Re: constantly updated table in Amazon RDS

Поиск
Список
Период
Сортировка
От Julie Nishimura
Тема Re: constantly updated table in Amazon RDS
Дата
Msg-id BL3PR05MB918682F4109B39F861FEE8E6AC2C9@BL3PR05MB9186.namprd05.prod.outlook.com
обсуждение исходный текст
Ответ на Re: constantly updated table in Amazon RDS  (Laurenz Albe <laurenz.albe@cybertec.at>)
Список pgsql-general
Thank you all

From: Laurenz Albe <laurenz.albe@cybertec.at>
Sent: Friday, October 21, 2022 8:56 PM
To: Julie Nishimura <juliezain@hotmail.com>; pgsql-general@postgresql.org <pgsql-general@postgresql.org>
Subject: Re: constantly updated table in Amazon RDS
 
On Fri, 2022-10-21 at 18:51 +0000, Julie Nishimura wrote:
> A table is constantly updated by inserting new rows. Will it affect select if where clause is based on > date?
> Does "where clause" to specify > date and < now?

Potentially yes, if the rows you query are the most recent rows, for which PostgreSQL
has the least accurate statistics.  There is a heuristics in the PostgreSQL optimizer:
it looks for the actual maximal value to adjust the last histogram bucket boundary.

If that is not enough, you can get PostgreSQL to gather table statistics more often
by lowering "autovacuum_analyze_scale_factor" for that table:

  ALTER TABLE tab SET (autovacuum_analyze_scale_factor = 0.01);

You'd have to experiment for the best value.

Yours,
Laurenz Albe

В списке pgsql-general по дате отправления:

Предыдущее
От: Laurenz Albe
Дата:
Сообщение: Re: constantly updated table in Amazon RDS
Следующее
От: "Peter J. Holzer"
Дата:
Сообщение: Re: Explain returns different number of rows