Re: Major performance degradation with joins in 15.8 or 15.7?

From: David Rowley <dgrowleyml(at)gmail(dot)com>
To: Ed Sabol <edwardjsabol(at)gmail(dot)com>
Cc: pgsql-performance(at)lists(dot)postgresql(dot)org
Subject: Re: Major performance degradation with joins in 15.8 or 15.7?
Date: 2024-11-07 22:18:21
Message-ID: CAApHDvr8c4-unAVysqMgz0mWO=PZ_WAGprq-jwND5+C_OO8SYg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On Fri, 8 Nov 2024 at 10:54, Ed Sabol <edwardjsabol(at)gmail(dot)com> wrote:
> The good news is that, after some research and experimentation, I was able to fix this performance degradation by setting random_page_cost = 2.0. We've always used the default values for seq_page_cost and random_page_cost (1.0 and 4.0, respectively, I think?). A lot of the advice I found online suggested these *_page_cost settings are too high?

Often people lower random_page_cost when running SSDs. The default
value of 4.0 was determined before SSDs were a thing.

> Did upgrading PostgreSQL to 15.8 cause this performance degradation? Did the page costs calculation change in 15.8 (or 15.7)? The PostgreSQL version is the only thing that has appreciably changed with this database this whole year.

It's impossible to say with the given information. You didn't mention
which version you upgraded from to start with.

We'd need to see EXPLAIN ANALYZE from before and after you changed
random_page_cost.

> Or do you think the size of the table just incrementally reached some threshold that resulted in the optimizer changing its plan based on the page costs?

It's possible, but it's also impossible to know without having more information.

> All of the columns are text fields and indexed. Unfortunately, I don't have the "EXPLAIN (ANALYZE, BUFFERS)" output from before I changed the random_page_cost setting. It's no longer in my scollback buffer.

You can set random_page_cost for just the session you're connected to
and try it. SET random_page_cost = <old value>; before running
EXPLAIN (ANALYZE, BUFFERS).

David

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Ed Sabol 2024-11-08 01:21:52 Re: Major performance degradation with joins in 15.8 or 15.7?
Previous Message Ed Sabol 2024-11-07 21:54:21 Major performance degradation with joins in 15.8 or 15.7?