Re: PG 12 slow selects from pg_settings

From: Ranier Vilela <ranier(dot)vf(at)gmail(dot)com>
To: Julius Tuskenis <julius(dot)tuskenis(at)gmail(dot)com>
Cc: Pgsql Performance <pgsql-performance(at)lists(dot)postgresql(dot)org>
Subject: Re: PG 12 slow selects from pg_settings
Date: 2021-10-08 11:00:55
Message-ID: CAEudQAomjJuWcvMDJ7rbp1GU7_h8wh1wx_YinDrMwXGhsjWkSw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Em sex., 8 de out. de 2021 às 04:01, Julius Tuskenis <
julius(dot)tuskenis(at)gmail(dot)com> escreveu:

> Dear PostgreSQL community,
>
> we have noticed a severe decrease in performance reading
> pg_catalog.pg_settings table in PostgreSQL 12 on MS Windows 10 machines
> compared to earlier versions.
>
> ```
> explain (analyze, buffers, timing)
> SELECT * from pg_catalog.pg_settings where name =
> 'standard_conforming_strings';
> ```
>
> On *PostgreSQL 12.5, compiled by Visual C++ build 1914, 64-bit:*
> Function Scan on pg_show_all_settings a (cost=0.00..12.50 rows=5
> width=485) (actual time=343.350..343.356 rows=1 loops=1)
> Filter: (name = 'standard_conforming_strings'::text)
> Rows Removed by Filter: 313
> Planning Time: 0.079 ms
> Execution Time: 343.397 ms
>
You can try 12.8 which is available now, there is a dll related fix that
can make some improvement.

regards,
Ranier Vilela

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Julius Tuskenis 2021-10-08 12:05:57 Re: PG 12 slow selects from pg_settings
Previous Message Julius Tuskenis 2021-10-08 07:01:33 PG 12 slow selects from pg_settings